Create Java project with Maven archetype spring-boot-jboss-archetype

This is a archetype for a blank spring boot project with JUnit 5, Log4j and Lombok 2 for an external JBoss server

Create a Java Project by archetype spring-boot-jboss-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dpackage="My-package"   -DarchetypeGroupId="de.tebros"   -DarchetypeArtifactId="spring-boot-jboss-archetype"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

package
validationRegex: none

Details about maven archetype spring-boot-jboss-archetype

GroupId

GroupId

de.tebros
ArtifactId

ArtifactId

spring-boot-jboss-archetype
Version

Version

1.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=de.tebros -DarchetypeArtifactId=spring-boot-jboss-archetype -DarchetypeVersion=1.0.0 -DinteractiveMode=false