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

Creates a new quickstart project to integration test Spring modules with Testify, JUnit4, Mockito, and AssertJ.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.testifyproject.archetypes"   -DarchetypeArtifactId="junit-spring-integrationtest-archetype"   -DarchetypeVersion="0.9.1"   -DinteractiveMode=false 

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

Группа

Группа

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

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

junit-spring-integrationtest-archetype
Версия

Версия

0.9.1
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.testifyproject.archetypes -DarchetypeArtifactId=junit-spring-integrationtest-archetype -DarchetypeVersion=0.9.1 -DinteractiveMode=false