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

Blank Project for Spring Boot

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="am.ik.archetype"   -DarchetypeArtifactId="spring-boot-blank-archetype"   -DarchetypeVersion="0.9.0"   -DinteractiveMode=false 

Details about maven archetype spring-boot-blank-archetype

GroupId

GroupId

am.ik.archetype
ArtifactId

ArtifactId

spring-boot-blank-archetype
Version

Version

0.9.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=am.ik.archetype -DarchetypeArtifactId=spring-boot-blank-archetype -DarchetypeVersion=0.9.0 -DinteractiveMode=false