Создать Java проект на основе Maven архетипа camunda-archetype-engine-plugin

Process engine plugin for Camunda BPM. Contains: ProcessEnginePlugin, ParseListener, JUnit Test with in-memory engine, BPMN Process for testing.

Консольная команда для создания Java-проекта на основе архетипа camunda-archetype-engine-plugin:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dclass-name-prefix="My-class-name-prefix"   -Dproject-name="My-project-name"   -Dproject-description="My-project-description"   -Dcamunda-version="My-camunda-version"   -Darchetype-groupId="My-archetype-groupId"   -Darchetype-artifactId="My-archetype-artifactId"   -Darchetype-version="My-archetype-version"   -DarchetypeGroupId="org.camunda.bpm.archetype"   -DarchetypeArtifactId="camunda-archetype-engine-plugin"   -DarchetypeVersion="7.7.4"   -DinteractiveMode=false 

Обязательные параметры для создания java проекта:

class-name-prefix
validationRegex: нет
project-name
validationRegex: нет
project-description
validationRegex: нет
camunda-version
validationRegex: нет
archetype-groupId
validationRegex: нет
archetype-artifactId
validationRegex: нет
archetype-version
validationRegex: нет

Подробная информация об архетипе camunda-archetype-engine-plugin

Группа

Группа

org.camunda.bpm.archetype
Идентификатор

Идентификатор

camunda-archetype-engine-plugin
Версия

Версия

7.7.4
Тип

Тип

maven-archetype

Как подключить последнюю версию

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.camunda.bpm.archetype -DarchetypeArtifactId=camunda-archetype-engine-plugin -DarchetypeVersion=7.7.4 -DinteractiveMode=false