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

Template engineering of huifer.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="com.github.huifer"   -DarchetypeArtifactId="template-project-archetype"   -DarchetypeVersion="1.1"   -DinteractiveMode=false 

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

  • controller
  • start
  • open-api
  • database-object
  • domain
  • infrastructure
  • cache
  • project-configuration

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

Группа

Группа

com.github.huifer
Идентификатор

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

template-project-archetype
Версия

Версия

1.1
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.huifer -DarchetypeArtifactId=template-project-archetype -DarchetypeVersion=1.1 -DinteractiveMode=false