Create Java project with Maven archetype jersey-quickstart-webapp

An archetype which contains a quick start Jersey-based web application project.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.glassfish.jersey.archetypes"   -DarchetypeArtifactId="jersey-quickstart-webapp"   -DarchetypeVersion="2.26-b05"   -DinteractiveMode=false 

Details about maven archetype jersey-quickstart-webapp

GroupId

GroupId

org.glassfish.jersey.archetypes
ArtifactId

ArtifactId

jersey-quickstart-webapp
Version

Version

2.26-b05
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.glassfish.jersey.archetypes -DarchetypeArtifactId=jersey-quickstart-webapp -DarchetypeVersion=2.26-b05 -DinteractiveMode=false