Create Java project with Maven archetype war-archetype


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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.ops4j.pax.web.archetypes"   -DarchetypeArtifactId="war-archetype"   -DarchetypeVersion="3.0.4"   -DinteractiveMode=false 

Details about maven archetype war-archetype

GroupId

GroupId

org.ops4j.pax.web.archetypes
ArtifactId

ArtifactId

war-archetype
Version

Version

3.0.4
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.ops4j.pax.web.archetypes -DarchetypeArtifactId=war-archetype -DarchetypeVersion=3.0.4 -DinteractiveMode=false