I want to debug Camunda webapps in Eclipse.
How do I set this up?
For my solution I used the Camunda Tomcat distribution. For other Application Servers, the steps might vary.
\camunda-bpm-tomcat-7.1.0-Final\server\apache-tomcat-7.0.50\)\conf folder of your distro, e.g., \camunda-bpm-tomcat-7.1.0-Final\server\apache-tomcat-7.0.50\conf\) to the server directory
Add the webapp as a Maven project with dependency to camunda-webapp-tomcat
Content of pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.camunda.consulting</groupId>
<artifactId>debugging-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.camunda.bpm.webapp</groupId>
<artifactId>camunda-webapp-tomcat</artifactId>
<version>7.1.0-Final</version>
<type>war</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>https://app.camunda.com/nexus/content/groups/public</url>
</repository>
</repositories>
</project>