Create Java project with Maven archetype quickstart-webapp

Maven archetype for creating a Axis2 web Service as a webapp

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.axis2.archetype"   -DarchetypeArtifactId="quickstart-webapp"   -DarchetypeVersion="1.7.4"   -DinteractiveMode=false 

Details about maven archetype quickstart-webapp

GroupId

GroupId

org.apache.axis2.archetype
ArtifactId

ArtifactId

quickstart-webapp
Version

Version

1.7.4
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.axis2.archetype -DarchetypeArtifactId=quickstart-webapp -DarchetypeVersion=1.7.4 -DinteractiveMode=false