Create Java project with Maven archetype archetype


Create a Java Project by archetype archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.wildfly.swarm"   -DarchetypeArtifactId="archetype"   -DarchetypeVersion="1.0.0.Alpha6"   -DinteractiveMode=false 

Details about maven archetype archetype

GroupId

GroupId

org.wildfly.swarm
ArtifactId

ArtifactId

archetype
Version

Version

1.0.0.Alpha6
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.wildfly.swarm -DarchetypeArtifactId=archetype -DarchetypeVersion=1.0.0.Alpha6 -DinteractiveMode=false