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

Maven Archetype to generate a java based projects with configured github workflow

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DGithubOrgOrAccount="My-GithubOrgOrAccount"   -Dversion="My-version"   -DarchetypeGroupId="com.github.hemantsonu20"   -DarchetypeArtifactId="github-workflow-java-archetype"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

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

GithubOrgOrAccount
validationRegex: нет
version
validationRegex: нет

Подробная информация об архетипе github-workflow-java-archetype

Группа

Группа

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

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

github-workflow-java-archetype
Версия

Версия

1.0.0
Тип

Тип

maven-archetype

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

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.hemantsonu20 -DarchetypeArtifactId=github-workflow-java-archetype -DarchetypeVersion=1.0.0 -DinteractiveMode=false