diff --git a/beedk-activiti-ext-archetype/src/main/resources/archetype-resources/pom.xml b/beedk-activiti-ext-archetype/src/main/resources/archetype-resources/pom.xml
index ca8d4f5..0fe31e9 100644
--- a/beedk-activiti-ext-archetype/src/main/resources/archetype-resources/pom.xml
+++ b/beedk-activiti-ext-archetype/src/main/resources/archetype-resources/pom.xml
@@ -60,8 +60,8 @@
true
-
- com.inteligr8.ootbee:beedk-aps-ext-rad-tile:1.1-SNAPSHOT
+
+ com.inteligr8.ootbee:beedk-activiti-ext-tile:${beedkVersion}
@@ -90,10 +90,5 @@
activiti-public-releases
https://artifacts.alfresco.com/nexus/repository/activiti-releases
-
-
- activiti-enterprise-releases
- https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases
-
\ No newline at end of file
diff --git a/beedk-activiti-ext-tile/.gitignore b/beedk-activiti-ext-tile/.gitignore
new file mode 100644
index 0000000..8c37f05
--- /dev/null
+++ b/beedk-activiti-ext-tile/.gitignore
@@ -0,0 +1,9 @@
+# Eclipse
+.project
+.classpath
+.settings
+
+# Maven
+pom.xml.versionsBackup
+target
+
diff --git a/beedk-activiti-ext-tile/README.md b/beedk-activiti-ext-tile/README.md
new file mode 100644
index 0000000..d900d74
--- /dev/null
+++ b/beedk-activiti-ext-tile/README.md
@@ -0,0 +1,62 @@
+# BeeDK Activiti Extension Maven Tile
+
+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 assists with the building of any Activiti extension.
+
+## 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-activiti-ext-tile:[1.0.0,2.0.0)
+
+
+
+ ...
+
+ ...
+
+ ...
+
+```
+
+## 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 |
+| ---------------------------- |:--------:| --------------- | ----------- |
+| `activiti.shaded.classifier` | | `bundle` | |
+| `activiti.apidoc.name` | | *project name* | |
+| `activiti.apidoc.title` | | Activiti API Documentation | |
+
+### Plugin Versions
+
+| Maven Property |
+| ---------------------------------- |
+| `activiti-api-doclet.version` |
+| `maven-clean-plugin.version` |
+| `maven-javadoc-plugin.version` |
+| `maven-shade-plugin.version` |
+| `flatten-maven-plugin.version` |
diff --git a/beedk-activiti-ext-tile/pom.xml b/beedk-activiti-ext-tile/pom.xml
new file mode 100644
index 0000000..bf17244
--- /dev/null
+++ b/beedk-activiti-ext-tile/pom.xml
@@ -0,0 +1,55 @@
+
+
+ 4.0.0
+
+ beedk-activiti-ext-tile
+ tile
+
+
+ com.inteligr8.ootbee
+ beedk-parent
+ 1.1-SNAPSHOT
+ ..
+
+
+ Order of the Bee Development Kit: Activiti Extension
+ https://git.inteligr8.com/inteligr8/ootbee-beedk
+
+
+
+ GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007
+ https://www.gnu.org/licenses/lgpl-3.0.txt
+
+
+
+
+ scm:git:https://git.inteligr8.com/inteligr8/ootbee-beedk.git
+ scm:git:git@git.inteligr8.com:inteligr8/ootbee-beedk.git
+ https://git.inteligr8.com/inteligr8/ootbee-beedk
+
+
+ Order of the Bee
+ https://orderofthebee.net
+
+
+
+ brian.long
+ Brian Long
+ brian@inteligr8.com
+ Inteligr8
+ https://www.inteligr8.com
+ https://twitter.com/brianmlong
+
+
+
+
+
+
+ io.repaint.maven
+ tiles-maven-plugin
+
+
+
+
diff --git a/beedk-activiti-ext-tile/tile.xml b/beedk-activiti-ext-tile/tile.xml
new file mode 100644
index 0000000..4b5d75b
--- /dev/null
+++ b/beedk-activiti-ext-tile/tile.xml
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+ default-props
+
+
+ !some-prop-that-never-exists
+
+
+
+
+ bundle
+ @project.name@
+ Activiti API Documentation
+
+
+ 1.1.1
+ @maven-clean-plugin.version@
+ @maven-javadoc-plugin.version@
+ @maven-shade-plugin.version@
+ @flatten-maven-plugin.version@
+
+
+
+ apidoc
+
+
+
+ maven-clean-plugin
+ ${maven-clean-plugin.version}
+
+
+
+ ${basedir}/apidocs
+
+
+
+
+
+ maven-javadoc-plugin
+ ${maven-javadoc-plugin.version}
+
+
+ generate-doclet
+ generate-resources
+
+ javadoc
+
+
+ **/*.java
+ com.inteligr8.activiti.doclet.ActivitiDoclet
+
+ com.inteligr8.activiti
+ activiti-api-doclet
+ ${activiti-api-doclet.version}
+
+ false
+ ${basedir}
+
+ --apiName '${activiti.apidoc.name}'
+ --title '${activiti.apidoc.title}'
+
+
+
+ true
+
+
+
+
+
+
+
+
+ bundle
+
+
+
+
+ org.codehaus.mojo
+ flatten-maven-plugin
+ ${flatten-maven-plugin.version}
+
+
+ flatten-pom
+ process-resources
+
+
+
+
+
+ maven-shade-plugin
+ ${maven-shade-plugin.version}
+
+
+ shade-deps
+ package
+ shade
+
+ true
+ ${activiti.shaded.classifier}
+
+
+ false
+
+
+
+
+
+
+
+
+
+
diff --git a/pom.xml b/pom.xml
index 5c60a36..35b7090 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,6 +148,8 @@
beedk-acs-platform-webapp-tile
beedk-acs-share-webapp-tile
+ beedk-activiti-ext-tile
+
beedk-ate-springboot
beedk-ate-springboot-test
beedk-ate-springboot-tile