Create Java project with Maven archetype slimboot-archetype

This archetype creates a lightweight Spring Boot API

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DspecificationUri="My-specificationUri"   -DarchetypeGroupId="com.fortytwobinary"   -DarchetypeArtifactId="slimboot-archetype"   -DarchetypeVersion="0.1.0"   -DinteractiveMode=false 

Required parameters for generate java project:

specificationUri
validationRegex: none

Details about maven archetype slimboot-archetype

GroupId

GroupId

com.fortytwobinary
ArtifactId

ArtifactId

slimboot-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=com.fortytwobinary -DarchetypeArtifactId=slimboot-archetype -DarchetypeVersion=0.1.0 -DinteractiveMode=false