Create Java project with Maven archetype jooby-archetype


Create a Java Project by archetype jooby-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Djooby-version="My-jooby-version"   -DarchetypeGroupId="io.jooby"   -DarchetypeArtifactId="jooby-archetype"   -DarchetypeVersion="2.8.0"   -DinteractiveMode=false 

Required parameters for generate java project:

jooby-version
validationRegex: none

Details about maven archetype jooby-archetype

GroupId

GroupId

io.jooby
ArtifactId

ArtifactId

jooby-archetype
Version

Version

2.8.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.jooby -DarchetypeArtifactId=jooby-archetype -DarchetypeVersion=2.8.0 -DinteractiveMode=false