Build support for Camunda EE Cockpit 97/18597/1
authorRob Daugherty <rd472p@att.com>
Thu, 12 Oct 2017 16:47:20 +0000 (12:47 -0400)
committerRob Daugherty <rd472p@att.com>
Thu, 12 Oct 2017 16:47:20 +0000 (12:47 -0400)
The community edition Camunda Cockpit does not have the
capability to inspect a running or completed process.
This makes it useless for debugging purposes.

If a user has an enterprise license, it should be
possible to build SO using the enterprise version of
Camunda.

This commit modifies the SO poms so that the camunda
version may be specified on the maven command line, as
follows:

-Dcamunda.version=7.7.3-ee -Dcamunda.bpm.webapp.artifact=camunda-webapp-ee-jboss-standalone

A maven repository containing the enterprise artifacts
(in this case, 7.7.3-ee) would also need to be provided
at build time in the maven settings.xml configuration.

Issue: SO-216
Change-Id: Idff63ce70475299924333b37aa51f8d963adf568
Signed-off-by: Rob Daugherty <rd472p@att.com>
bpmn/MSOCockpit/pom.xml
bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml
bpmn/pom.xml

index ed9d08d..be3f9da 100644 (file)
@@ -41,7 +41,7 @@
                \r
                <dependency>\r
                        <groupId>org.camunda.bpm.webapp</groupId>\r
-                       <artifactId>camunda-webapp-jboss-standalone</artifactId>\r
+                       <artifactId>${camunda.bpm.webapp.artifact}</artifactId>\r
                        <version>${camunda.version}</version>\r
                        <type>war</type>\r
                </dependency>\r
index b84a84d..3bc0ace 100644 (file)
@@ -34,7 +34,7 @@
                <dependencySet>\r
                        <outputDirectory>/</outputDirectory>\r
                        <includes>\r
-                               <include>org.camunda.bpm.webapp:camunda-webapp-jboss-standalone</include>\r
+                               <include>org.camunda.bpm.webapp:${camunda.bpm.webapp.artifact}</include>\r
                        </includes>\r
                        <unpack>true</unpack>\r
                        <unpackOptions>\r
index 9c9e6e0..b878467 100644 (file)
@@ -18,6 +18,7 @@
   <properties>
     <camunda.version>7.7.0</camunda.version>
     <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
+    <camunda.bpm.webapp.artifact>camunda-webapp-jboss-standalone</camunda.bpm.webapp.artifact>
     <h2.version>1.3.173</h2.version>
     <groovy.version>2.4.7</groovy.version>
     <saxon.version>9.5.1-8</saxon.version>