Create Java project with Maven archetype archetype-quickstart

Java Quickstart

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="com.github.xlongshu.maven"   -DarchetypeArtifactId="archetype-quickstart"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

Details about maven archetype archetype-quickstart

GroupId

GroupId

com.github.xlongshu.maven
ArtifactId

ArtifactId

archetype-quickstart
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=com.github.xlongshu.maven -DarchetypeArtifactId=archetype-quickstart -DarchetypeVersion=1.0.0 -DinteractiveMode=false