Create Java project with Maven archetype archetype

JRebirth Archetype used to build a new fresh application

Create a Java Project by archetype archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.jrebirth.af"   -DarchetypeArtifactId="archetype"   -DarchetypeVersion="8.0.3"   -DinteractiveMode=false 

Details about maven archetype archetype

GroupId

GroupId

org.jrebirth.af
ArtifactId

ArtifactId

archetype
Version

Version

8.0.3
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.jrebirth.af -DarchetypeArtifactId=archetype -DarchetypeVersion=8.0.3 -DinteractiveMode=false