Create Java project with Maven archetype student-archetype

A simple Student program to get you started with Java

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

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

Details about maven archetype student-archetype

GroupId

GroupId

io.github.davidwhitlock.cs410J
ArtifactId

ArtifactId

student-archetype
Version

Version

2021.1.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=student-archetype -DarchetypeVersion=2021.1.0 -DinteractiveMode=false