Create Java project with Maven archetype cxf-jaxrs-service

Simple CXF JAX-RS webapp service using Spring configuration

Create a Java Project by archetype cxf-jaxrs-service with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.cxf.archetype"   -DarchetypeArtifactId="cxf-jaxrs-service"   -DarchetypeVersion="3.0.16"   -DinteractiveMode=false 

Details about maven archetype cxf-jaxrs-service

GroupId

GroupId

org.apache.cxf.archetype
ArtifactId

ArtifactId

cxf-jaxrs-service
Version

Version

3.0.16
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-jaxrs-service -DarchetypeVersion=3.0.16 -DinteractiveMode=false