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

Creates a new Camel project using CDI.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dcamel-version="My-camel-version"   -Dcdi-api-version="My-cdi-api-version"   -Ddeltaspike-version="My-deltaspike-version"   -Dweld2-version="My-weld2-version"   -Dmaven-compiler-plugin-version="My-maven-compiler-plugin-version"   -Dmaven-resources-plugin-version="My-maven-resources-plugin-version"   -Dexec-maven-plugin-version="My-exec-maven-plugin-version"   -Dslf4j-version="My-slf4j-version"   -Dlog4j-version="My-log4j-version"   -DarchetypeGroupId="org.apache.camel.archetypes"   -DarchetypeArtifactId="camel-archetype-cdi"   -DarchetypeVersion="2.16.0"   -DinteractiveMode=false 

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

camel-version
validationRegex: нет
cdi-api-version
validationRegex: нет
deltaspike-version
validationRegex: нет
weld2-version
validationRegex: нет
maven-compiler-plugin-version
validationRegex: нет
maven-resources-plugin-version
validationRegex: нет
exec-maven-plugin-version
validationRegex: нет
slf4j-version
validationRegex: нет
log4j-version
validationRegex: нет

Подробная информация об архетипе camel-archetype-cdi

Группа

Группа

org.apache.camel.archetypes
Идентификатор

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

camel-archetype-cdi
Версия

Версия

2.16.0
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-cdi -DarchetypeVersion=2.16.0 -DinteractiveMode=false