Create Java project with Maven archetype quarkus-multi-module-archetype


Create a Java Project by archetype quarkus-multi-module-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="net.kemitix"   -DarchetypeArtifactId="quarkus-multi-module-archetype"   -DarchetypeVersion="0.1.0"   -DinteractiveMode=false 

Generated Project modules

  • parent
  • service
  • api
  • q-runner
  • q-tests

Details about maven archetype quarkus-multi-module-archetype

GroupId

GroupId

net.kemitix
ArtifactId

ArtifactId

quarkus-multi-module-archetype
Version

Version

0.1.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.kemitix -DarchetypeArtifactId=quarkus-multi-module-archetype -DarchetypeVersion=0.1.0 -DinteractiveMode=false