Create Java project with Maven archetype apptbook-archetype


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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="io.github.davidwhitlock.cs410J"   -DarchetypeArtifactId="apptbook-archetype"   -DarchetypeVersion="2021.0.0"   -DinteractiveMode=false 

Details about maven archetype apptbook-archetype

GroupId

GroupId

io.github.davidwhitlock.cs410J
ArtifactId

ArtifactId

apptbook-archetype
Version

Version

2021.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=io.github.davidwhitlock.cs410J -DarchetypeArtifactId=apptbook-archetype -DarchetypeVersion=2021.0.0 -DinteractiveMode=false