Create Java project with Maven archetype rest-archetype


Create a Java Project by archetype rest-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.seedstack"   -DarchetypeArtifactId="rest-archetype"   -DarchetypeVersion="15.7-M4"   -DinteractiveMode=false 

Details about maven archetype rest-archetype

GroupId

GroupId

org.seedstack
ArtifactId

ArtifactId

rest-archetype
Version

Version

15.7-M4
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.seedstack -DarchetypeArtifactId=rest-archetype -DarchetypeVersion=15.7-M4 -DinteractiveMode=false