Create Java project with Maven archetype jcore-cc-archetype

An archetype to quickly create new JCoRe UIMA CAS consumers.

Create a Java Project by archetype jcore-cc-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DartifactId="My-artifactId"   -Dversion="My-version"   -DartifactName="My-artifactName"   -DartifactDescription="My-artifactDescription"   -DconsumerClassname="My-consumerClassname"   -DarchetypeGroupId="de.julielab"   -DarchetypeArtifactId="jcore-cc-archetype"   -DarchetypeVersion="2.3.2"   -DinteractiveMode=false 

Required parameters for generate java project:

artifactId
validationRegex: jcore-.*-((consumer)|(writer))
version
validationRegex: none
artifactName
validationRegex: none
artifactDescription
validationRegex: none
consumerClassname
validationRegex: none

Details about maven archetype jcore-cc-archetype

GroupId

GroupId

de.julielab
ArtifactId

ArtifactId

jcore-cc-archetype
Version

Version

2.3.2
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=de.julielab -DarchetypeArtifactId=jcore-cc-archetype -DarchetypeVersion=2.3.2 -DinteractiveMode=false