Create Java project with Maven archetype camunda-archetype-spring-boot-demo

Demo application with lots of pre-built parts that uses the Spring Boot Starter Contains: BPMN Process, Java Delegate, HTML5- start and task forms, JUnit Test with in-memory engine and visual process test coverage

Create a Java Project by archetype camunda-archetype-spring-boot-demo with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dproject-name="My-project-name"   -Dproject-description="My-project-description"   -Dcamunda-version="My-camunda-version"   -Dcamunda-spring-boot-version="My-camunda-spring-boot-version"   -Darchetype-groupId="My-archetype-groupId"   -Darchetype-artifactId="My-archetype-artifactId"   -Darchetype-version="My-archetype-version"   -DarchetypeGroupId="org.camunda.bpm.archetype"   -DarchetypeArtifactId="camunda-archetype-spring-boot-demo"   -DarchetypeVersion="7.10.0"   -DinteractiveMode=false 

Required parameters for generate java project:

project-name
validationRegex: none
project-description
validationRegex: none
camunda-version
validationRegex: none
camunda-spring-boot-version
validationRegex: none
archetype-groupId
validationRegex: none
archetype-artifactId
validationRegex: none
archetype-version
validationRegex: none

Details about maven archetype camunda-archetype-spring-boot-demo

GroupId

GroupId

org.camunda.bpm.archetype
ArtifactId

ArtifactId

camunda-archetype-spring-boot-demo
Version

Version

7.10.0
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-spring-boot-demo -DarchetypeVersion=7.10.0 -DinteractiveMode=false