Create Java project with Maven archetype jaxws-codefirst

Creates a project for developing a Web Service starting from Java code and using JBossWS

Create a Java Project by archetype jaxws-codefirst with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Djbosswscxf="My-jbosswscxf"   -DarchetypeGroupId="org.jboss.ws.plugins.archetypes"   -DarchetypeArtifactId="jaxws-codefirst"   -DarchetypeVersion="1.0.0.Beta1"   -DinteractiveMode=false 

Required parameters for generate java project:

jbosswscxf
validationRegex: none

Details about maven archetype jaxws-codefirst

GroupId

GroupId

org.jboss.ws.plugins.archetypes
ArtifactId

ArtifactId

jaxws-codefirst
Version

Version

1.0.0.Beta1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.jboss.ws.plugins.archetypes -DarchetypeArtifactId=jaxws-codefirst -DarchetypeVersion=1.0.0.Beta1 -DinteractiveMode=false