Create Java project with Maven archetype java-playground-mod

Java project for playaround, hacking, or just testing some stuff out. A modular (JPMS) Java project, includes unit tests with JUnit's plarform.

Create a Java Project by archetype java-playground-mod with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dmodule="My-module"   -DarchetypeGroupId="info.tomfi.archetypes"   -DarchetypeArtifactId="java-playground-mod"   -DarchetypeVersion="1.0.3"   -DinteractiveMode=false 

Required parameters for generate java project:

module
validationRegex: none

Details about maven archetype java-playground-mod

GroupId

GroupId

info.tomfi.archetypes
ArtifactId

ArtifactId

java-playground-mod
Version

Version

1.0.3
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=info.tomfi.archetypes -DarchetypeArtifactId=java-playground-mod -DarchetypeVersion=1.0.3 -DinteractiveMode=false