Hosted via github pages
Please read the IDE Formatting Configuration to configure your IDE properly for editing kotlin files.
We are creating the maven plugin descriptor with Maven Plugin Builder Gradle Plugin The follow gradle task generates the maven descriptor into directory src/main/resources. The gradle task build depends on this task
./gradlew buildPluginDescriptor
Publish to local maven repository for usage in a maven project
./gradlew publishToMavenLocal
<plugins>
...
<plugin>
<groupId>info.novatec</groupId>
<artifactId>camunda-bpmn-documentation-generator</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- optionaly, executes with install -->
<executions>
<execution>
<id>generate</id>
<phase>install</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
./mw cbdg:generate