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

UberFire Component Archetype

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DgroupId="My-groupId"   -DartifactId="My-artifactId"   -DcomponentId="My-componentId"   -DcapitalizedComponentId="My-capitalizedComponentId"   -Dversion="My-version"   -DarchetypeGroupId="org.uberfire"   -DarchetypeArtifactId="uberfire-component-archetype"   -DarchetypeVersion="0.5.7.Final"   -DinteractiveMode=false 

Обязательные параметры для создания java проекта:

groupId
validationRegex: нет
artifactId
validationRegex: нет
componentId
validationRegex: нет
capitalizedComponentId
validationRegex: нет
version
validationRegex: нет

Модули в готовом maven проекте

  • ${rootArtifactId}-api
  • ${rootArtifactId}-backend
  • ${rootArtifactId}-client

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

Группа

Группа

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

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

uberfire-component-archetype
Версия

Версия

0.5.7.Final
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.uberfire -DarchetypeArtifactId=uberfire-component-archetype -DarchetypeVersion=0.5.7.Final -DinteractiveMode=false