Create Java project with Maven archetype cxf-jaxws-wsdlfirst

Creates a contract (WSDL)-first CXF web service

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.cxf.archetype"   -DarchetypeArtifactId="cxf-jaxws-wsdlfirst"   -DarchetypeVersion="3.2.11"   -DinteractiveMode=false 

Details about maven archetype cxf-jaxws-wsdlfirst

GroupId

GroupId

org.apache.cxf.archetype
ArtifactId

ArtifactId

cxf-jaxws-wsdlfirst
Version

Version

3.2.11
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.cxf.archetype -DarchetypeArtifactId=cxf-jaxws-wsdlfirst -DarchetypeVersion=3.2.11 -DinteractiveMode=false