From a10e358bb0d385b22cbd7b38b069401f61206359 Mon Sep 17 00:00:00 2001 From: Rob Daugherty Date: Thu, 12 Oct 2017 12:47:20 -0400 Subject: Build support for Camunda EE Cockpit 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 --- bpmn/MSOCockpit/pom.xml | 2 +- bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bpmn/MSOCockpit') diff --git a/bpmn/MSOCockpit/pom.xml b/bpmn/MSOCockpit/pom.xml index ed9d08d060..be3f9dafb5 100644 --- a/bpmn/MSOCockpit/pom.xml +++ b/bpmn/MSOCockpit/pom.xml @@ -41,7 +41,7 @@ org.camunda.bpm.webapp - camunda-webapp-jboss-standalone + ${camunda.bpm.webapp.artifact} ${camunda.version} war diff --git a/bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml b/bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml index b84a84df8a..3bc0ace298 100644 --- a/bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml +++ b/bpmn/MSOCockpit/src/main/assembly/cockpit-build.xml @@ -34,7 +34,7 @@ / - org.camunda.bpm.webapp:camunda-webapp-jboss-standalone + org.camunda.bpm.webapp:${camunda.bpm.webapp.artifact} true -- cgit 1.2.3-korg