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

A Maven Archetype for the generation of a Maven project for a new converter. This archetype can be used either in combination with the Maven command line (utilizing the goal archetype:generate) or inside any IDE suitably integrated with Maven.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DcontractName="My-contractName"   -DcontractURI="My-contractURI"   -DconverterName="My-converterName"   -DconverterURI="My-converterURI"   -DarchetypeGroupId="it.uniroma2.art.coda"   -DarchetypeArtifactId="coda-converter-archetype"   -DarchetypeVersion="1.3"   -DinteractiveMode=false 

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

contractName
validationRegex: нет
contractURI
validationRegex: нет
converterName
validationRegex: нет
converterURI
validationRegex: нет

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

Группа

Группа

it.uniroma2.art.coda
Идентификатор

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

coda-converter-archetype
Версия

Версия

1.3
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=it.uniroma2.art.coda -DarchetypeArtifactId=coda-converter-archetype -DarchetypeVersion=1.3 -DinteractiveMode=false