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

This module defines a standard parent POM to use for various Incode applications and modules. Its primary purpose is to make it easy to use a set up maven mixins (https://github.com/odavid/maven-plugins) within child POMs. Specifically this means locking down the versions of plugins using pluginManagement. It does NOT define any mixins for Apache Isis.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.apache.isis.archetype"   -DarchetypeArtifactId="helloworld-archetype"   -DarchetypeVersion="1.16.1"   -DinteractiveMode=false 

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

Группа

Группа

org.apache.isis.archetype
Идентификатор

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

helloworld-archetype
Версия

Версия

1.16.1
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.isis.archetype -DarchetypeArtifactId=helloworld-archetype -DarchetypeVersion=1.16.1 -DinteractiveMode=false