Create Java project with Maven archetype camel-archetype-component

Creates a new Camel component.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.camel.archetypes"   -DarchetypeArtifactId="camel-archetype-component"   -DarchetypeVersion="2.6.0"   -DinteractiveMode=false 

Details about maven archetype camel-archetype-component

GroupId

GroupId

org.apache.camel.archetypes
ArtifactId

ArtifactId

camel-archetype-component
Version

Version

2.6.0
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-component -DarchetypeVersion=2.6.0 -DinteractiveMode=false