Create Java project with Maven archetype cristalise-module-archetype

Template Maven project for CRISTAL modules

Create a Java Project by archetype cristalise-module-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dnamespace="My-namespace"   -DarchetypeGroupId="org.cristalise"   -DarchetypeArtifactId="cristalise-module-archetype"   -DarchetypeVersion="4.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

namespace
validationRegex: none

Details about maven archetype cristalise-module-archetype

GroupId

GroupId

org.cristalise
ArtifactId

ArtifactId

cristalise-module-archetype
Version

Version

4.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.cristalise -DarchetypeArtifactId=cristalise-module-archetype -DarchetypeVersion=4.0.0 -DinteractiveMode=false