Create Java project with Maven archetype crunch-archetype

Create a basic, self-contained job for Apache Crunch.

Create a Java Project by archetype crunch-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.crunch"   -DarchetypeArtifactId="crunch-archetype"   -DarchetypeVersion="0.6.0"   -DinteractiveMode=false 

Details about maven archetype crunch-archetype

GroupId

GroupId

org.apache.crunch
ArtifactId

ArtifactId

crunch-archetype
Version

Version

0.6.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.crunch -DarchetypeArtifactId=crunch-archetype -DarchetypeVersion=0.6.0 -DinteractiveMode=false