Create Java project with Maven archetype wab-gwt-archetype


Create a Java Project by archetype wab-gwt-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DwebContextPath="My-webContextPath"   -DarchetypeGroupId="org.ops4j.pax.web.archetypes"   -DarchetypeArtifactId="wab-gwt-archetype"   -DarchetypeVersion="4.3.1"   -DinteractiveMode=false 

Required parameters for generate java project:

webContextPath
validationRegex: none

Details about maven archetype wab-gwt-archetype

GroupId

GroupId

org.ops4j.pax.web.archetypes
ArtifactId

ArtifactId

wab-gwt-archetype
Version

Version

4.3.1
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=wab-gwt-archetype -DarchetypeVersion=4.3.1 -DinteractiveMode=false