Create Java project with Maven archetype camel-archetype-activemq

Creates a new Camel project that configures and interacts with ActiveMQ.

Create a Java Project by archetype camel-archetype-activemq with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dactivemq-version="My-activemq-version"   -Dcamel-version="My-camel-version"   -Dlog4j-version="My-log4j-version"   -Dmaven-compiler-plugin-version="My-maven-compiler-plugin-version"   -Dslf4j-version="My-slf4j-version"   -Dspring-version="My-spring-version"   -Dxbean-spring-version="My-xbean-spring-version"   -DarchetypeGroupId="org.apache.camel.archetypes"   -DarchetypeArtifactId="camel-archetype-activemq"   -DarchetypeVersion="2.9.1"   -DinteractiveMode=false 

Required parameters for generate java project:

activemq-version
validationRegex: none
camel-version
validationRegex: none
log4j-version
validationRegex: none
maven-compiler-plugin-version
validationRegex: none
slf4j-version
validationRegex: none
spring-version
validationRegex: none
xbean-spring-version
validationRegex: none

Details about maven archetype camel-archetype-activemq

GroupId

GroupId

org.apache.camel.archetypes
ArtifactId

ArtifactId

camel-archetype-activemq
Version

Version

2.9.1
Type

Type

maven-archetype

How to add to project

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