Create Java project with Maven archetype kfs3-archetype


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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DkfsPrototypeGroupId="My-kfsPrototypeGroupId"   -DkfsPrototypeArtifactId="My-kfsPrototypeArtifactId"   -DkfsPrototypeVersion="My-kfsPrototypeVersion"   -DarchetypeGroupId="org.kualigan.maven.archetypes"   -DarchetypeArtifactId="kfs3-archetype"   -DarchetypeVersion="1.1.11"   -DinteractiveMode=false 

Required parameters for generate java project:

kfsPrototypeGroupId
validationRegex: none
kfsPrototypeArtifactId
validationRegex: none
kfsPrototypeVersion
validationRegex: none

Generated Project modules

  • ${rootArtifactId}-it
  • ${rootArtifactId}-config
  • ${rootArtifactId}-core
  • ${rootArtifactId}-web

Details about maven archetype kfs3-archetype

GroupId

GroupId

org.kualigan.maven.archetypes
ArtifactId

ArtifactId

kfs3-archetype
Version

Version

1.1.11
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.kualigan.maven.archetypes -DarchetypeArtifactId=kfs3-archetype -DarchetypeVersion=1.1.11 -DinteractiveMode=false