Hi Melanie,
I see this log output:
13:08:04,590 INFO [org.camunda.bpm.container.impl.jboss.deployment.processor.ProcessApplicationProcessor] (MSC service thread 1-2) Detected user-provided @ProcessApplication component with name 'org.camunda.bpm.pa.DevProcessApplication'.
13:08:05,955 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2) MSC00001: Failed to start service jboss.deployment.unit."camunda-webapp-jboss-7.2.0-alpha3.war".INSTALL: org.jboss.msc.service.StartException in service jboss.deployment.unit."camunda-webapp-jboss-7.2.0-alpha3.war".INSTALL: JBAS018733: Failed to process phase INSTALL of deployment "camunda-webapp-jboss-7.2.0-alpha3.war"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:127) [jboss-as-server-7.2.0.Final.jar:7.2.0.Final]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.4.GA.jar:1.0.4.GA]
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.4.GA.jar:1.0.4.GA]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExe
It seems like it is trying to deploy a process application 'org.camunda.bpm.pa.DevProcessApplication' we use during development (providing demo data).
You need to build the camunda-bpm-webapp repository without a profile:
cd camunda-bpm-webapp
mvn clean install -DskipTests
Does this help?
----
Btw, in order to add a plugin to the camunda webapp (cockpit), you do not need to build the webapp yourself. You could simply add the JAR file containing your plugin resources to the WEB-INF/lib folder of a webapp distribution you downloaded from camunda. We need to change this in the tutorial, sorry for that.
Cheers,
Daniel