Создать Java проект на основе Maven архетипа archetype-simple-restful-service


Консольная команда для создания Java-проекта на основе архетипа archetype-simple-restful-service:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.actframework"   -DarchetypeArtifactId="archetype-simple-restful-service"   -DarchetypeVersion="1.8.29.0"   -DinteractiveMode=false 

Подробная информация об архетипе archetype-simple-restful-service

Группа

Группа

org.actframework
Идентификатор

Идентификатор

archetype-simple-restful-service
Версия

Версия

1.8.29.0
Тип

Тип

maven-archetype

Как подключить последнюю версию

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.actframework -DarchetypeArtifactId=archetype-simple-restful-service -DarchetypeVersion=1.8.29.0 -DinteractiveMode=false