Well have no fear, you can now follow along and learn how to grab the correct version of the API documentation for JBoss BPM Suite 6.1.
As you know, the products at Red Hat are collected, tested and hardened from upstream community projects. JBoss BPM Suite is no different, being based on numerous sub-projects found in the Drools and jBPM communities.
At a point in time they produce a tagged version that is then channeled into our product quality assurance teams and productization teams. For JBoss BPM Suite this tag was called 6.2.x in the community.
$ git clone https://github.com/droolsjbpm/droolsjbpm-knowledge.git
![]() |
Figure 1: need the Final tag. |
$ git tag -l | grep 6.2
The results are a list of tags as shown in Figure 1, of which we are only interested in 6.2.0.Final, so we want to switch to that one as follows:
$ git checkout tags/6.2.0.Final
Now we move down into the KIE-API directory and build the API documentation as follows:
![]() |
Looking to Automate your business? |
$ cd kie-api
$ mvn javadoc:javadoc
The results will be found in the generated target directory and you can open the index.html file found as follows in your browser once the build is completed:
droolsjbpm-knowledge/kie-api/target/site/apidocs/index.html
You now have your very own copy of the JBoss BPM Suite 6.1 API documentation so you can get developing on your next JBoss BPM Suite application!
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.