Create Java project with Maven archetype web-quickstart

Context Web Application Framework - Quickstart

Create a Java Project by archetype web-quickstart with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="net.contextfw"   -DarchetypeArtifactId="web-quickstart"   -DarchetypeVersion="0.6.0"   -DinteractiveMode=false 

Details about maven archetype web-quickstart

GroupId

GroupId

net.contextfw
ArtifactId

ArtifactId

web-quickstart
Version

Version

0.6.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.contextfw -DarchetypeArtifactId=web-quickstart -DarchetypeVersion=0.6.0 -DinteractiveMode=false