Create Java project with Maven archetype war-bootstrap-archetype

Simple WAR bootstrap for quick & dirty testing in multiple servlet containers (Tomcat, Jetty, Glassfish).

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.duelengine"   -DarchetypeArtifactId="war-bootstrap-archetype"   -DarchetypeVersion="0.2.0"   -DinteractiveMode=false 

Details about maven archetype war-bootstrap-archetype

GroupId

GroupId

org.duelengine
ArtifactId

ArtifactId

war-bootstrap-archetype
Version

Version

0.2.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.duelengine -DarchetypeArtifactId=war-bootstrap-archetype -DarchetypeVersion=0.2.0 -DinteractiveMode=false