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

This is a archetype which creates a Kuali Rice based application. It uses a basic project structure demonstrating war overlays, service implementation, unit and integration testing. It is configured in a bundled integration model with Kuali Rice.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Ddatasource_ojb_platform="My-datasource_ojb_platform"   -Ddatasource_url="My-datasource_url"   -Ddatasource_username="My-datasource_username"   -Ddatasource_password="My-datasource_password"   -DarchetypeGroupId="org.kuali.rice"   -DarchetypeArtifactId="rice-archetype-quickstart"   -DarchetypeVersion="2.3.13"   -DinteractiveMode=false 

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

datasource_ojb_platform
validationRegex: нет
datasource_url
validationRegex: нет
datasource_username
validationRegex: нет
datasource_password
validationRegex: нет

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

Группа

Группа

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

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

rice-archetype-quickstart
Версия

Версия

2.3.13
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.kuali.rice -DarchetypeArtifactId=rice-archetype-quickstart -DarchetypeVersion=2.3.13 -DinteractiveMode=false