Create Java project with Maven archetype jee-war-archetype

Creates jee ready to use webapp

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="fr.brouillard.oss"   -DarchetypeArtifactId="jee-war-archetype"   -DarchetypeVersion="7.0.0"   -DinteractiveMode=false 

Details about maven archetype jee-war-archetype

GroupId

GroupId

fr.brouillard.oss
ArtifactId

ArtifactId

jee-war-archetype
Version

Version

7.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=fr.brouillard.oss -DarchetypeArtifactId=jee-war-archetype -DarchetypeVersion=7.0.0 -DinteractiveMode=false