# BeeDK ATS Maven Tile for RAD This is a component within the proposed [BeeDK](/inteligr8/ootbee-beedk). It is considered to be part of the **Public API** of the BeeDK. ## Purpose This project creates a [Maven Tile](https://github.com/repaint-io/maven-tiles) that provides Alfresco Transform Services for the rapid application development of any ACS module, extension, service, or web application. ## Usage To use this plugin, just reference it with the Maven Tiles plugin as shown in the following snippet. Do not forget the `extensions` element in the *plugin* configuration. ```xml ... ... io.repaint.maven tiles-maven-plugin [2.0,3.0) true ... com.inteligr8.ootbee:beedk-acs-platform--rad-tile:[1.0.0,2.0.0) com.inteligr8.ootbee:beedk-ats-rad-tile:[1.0.0,2.0.0) ... ... ... ... ``` This tile is meant to be used in conjunction with the `beedk-acs-platform-rad-tile` tile which is automatically included in each of the following BeeDK Public API Maven Tiles. * [`beedk-acs-platform-self-rad-tile`](/inteligr8/ootbee-beedk/src/stable/beedk-acs-platform-self-rad-tile) * [`beedk-acs-platform-artifact-rad-tile`](/inteligr8/ootbee-beedk/src/stable/beedk-acs-platform-artifact-rad-tile) > This Maven Tile should always be declared **AFTER** the Maven Tile used from the list above. See the [BeeDK documentation](/inteligr8/ootbee-beedk) on instructions for how to start and stop RAD capabilities. ## Configuration In your Maven project, set the following properties to define the behavior of this Maven Tile. Unless otherwise stated, they can only be overridden in the project POM or other Maven Tiles loaded earlier than this Maven Tile. ### Public API The following properties are intended to be exposed by inheriting Public API Maven Tiles. | Maven Property | Required | Default | Description | | ----------------------------------- |:--------:| --------------- | ----------- | | `alfresco.transform-aio.port` | | 8090 | The port to expose on `localhost` for the developer; not for other applications or users. | | `alfresco.transform-router.port` | | 8095 | The port to expose on `localhost` for the developer; not for other applications or users. | | `alfresco.transform-aio.version` | | *not important* | The version of the [Alfresco Transform Core Engine Docker Image](https://hub.docker.com/r/alfresco/alfresco-transform-core-aio/tags). | | `alfresco.transform-router.version` | | *not important* | The version of the [Alfresco Transform Router Docker Image](https://quay.io/repository/alfresco/alfresco-transform-router?tab=tags). | | `alfresco.sfs.version` | | *not important* | The version of the [Alfresco Shared File Store Engine Docker Image](https://quay.io/repository/alfresco/alfresco-shared-file-store?tab=tags). | ### Other APIs Additional less important configurations are inherited from the following Maven Tiles. * [`beedk-run-tile`](/inteligr8/ootbee-beedk/src/stable/beedk-run-tile) * [`beedk-run-tile`](/inteligr8/ootbee-beedk/src/stable/beedk-ate-test-tile) * [`beedk-run-tile`](/inteligr8/ootbee-beedk/src/stable/beedk-ats-test-tile) ## Results The Alfresco Transform Service components will be started during the `process-classes` Maven phase. This tile will result in the definition of the following Maven properties during the respective Maven phase. | Property | Data Type | Phase | Description | | --------------------------------- |:---------:|:------------:| ----------- | | `beedk.rad.ats.enabled` | Boolean | *At startup* | `true`, which signals other Maven Tiles |