This example demonstrates how to deploy a simple servlet process application.
- Checkout the project with Git
- Import the project into your IDE
- Build it with maven
- Deploy it to a camunda-bpm-platform distro of your choice
- Check the console if you can find: 'Service Task 'Example ServiceTask' is invoked!'
Modified the pom-xml
and added a new test-class ModelConsistencyTest.java
<!-- viadee Process Application Validator -->
<dependency>
<groupId>de.viadee</groupId>
<artifactId>viadeeProcessApplicationValidator</artifactId>
<version>...</version>
</dependency>
public class ModelConsistencyTest {
@Test
public void validateModel() {
assertTrue("Model inconsistency found. Please check target folder for validation output",
ProcessApplicationValidator.findModelInconsistencies().isEmpty());
}
}