Skip to content

Commit

Permalink
Add javadoc generation for bpmn model module #2579
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Feb 18, 2021
1 parent 68164a4 commit 386b0ec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions distro/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,14 @@

<target name="build.docs" unless="nodocs">
<!-- JAVADOCS -->
<exec executable="${mvn.executable}" dir="../modules/flowable-bpmn-model">
<arg line="javadoc:javadoc" />
</exec>
<mkdir dir="${target.docs.root}/bpmn-model-javadocs" />
<copy todir="${target.docs.root}/bpmn-model-javadocs">
<fileset dir="../modules/flowable-bpmn-model/target/site/apidocs" />
</copy>

<exec executable="${mvn.executable}" dir="../modules/flowable-engine">
<arg line="-DexcludePackageNames=org.flowable.engine.impl* javadoc:javadoc" />
</exec>
Expand Down

0 comments on commit 386b0ec

Please sign in to comment.