Create Java project with Maven archetype camunda-archetype-servlet-war

Process application that uses a shared Camunda BPM engine in a Servlet Container, e.g. Apache Tomcat. Contains: Servlet Process Application, BPMN Process, Java Delegate, HTML5-based start and task forms, JUnit Test with in-memory engine, Ant build script for one-click deployment in Eclipse

Create a Java Project by archetype camunda-archetype-servlet-war with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dcamunda-version="My-camunda-version"   -Djboss-version="My-jboss-version"   -Dtomcat-version="My-tomcat-version"   -Darchetype-groupId="My-archetype-groupId"   -Darchetype-artifactId="My-archetype-artifactId"   -Darchetype-version="My-archetype-version"   -DarchetypeGroupId="org.camunda.bpm.archetype"   -DarchetypeArtifactId="camunda-archetype-servlet-war"   -DarchetypeVersion="7.2.1"   -DinteractiveMode=false 

Required parameters for generate java project:

camunda-version
validationRegex: none
jboss-version
validationRegex: none
tomcat-version
validationRegex: none
archetype-groupId
validationRegex: none
archetype-artifactId
validationRegex: none
archetype-version
validationRegex: none

Details about maven archetype camunda-archetype-servlet-war

GroupId

GroupId

org.camunda.bpm.archetype
ArtifactId

ArtifactId

camunda-archetype-servlet-war
Version

Version

7.2.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.camunda.bpm.archetype -DarchetypeArtifactId=camunda-archetype-servlet-war -DarchetypeVersion=7.2.1 -DinteractiveMode=false