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

This archetype package creates a new Maven project consisting of nothing more than a pom.xml file referencing the parent POM project

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="de.lars-sh"   -DarchetypeArtifactId="parent-archetype"   -DarchetypeVersion="0.9.9"   -DinteractiveMode=false 

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

Группа

Группа

de.lars-sh
Идентификатор

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

parent-archetype
Версия

Версия

0.9.9
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=de.lars-sh -DarchetypeArtifactId=parent-archetype -DarchetypeVersion=0.9.9 -DinteractiveMode=false