Create Java project with Maven archetype java-advanced

Java project ready for proffesionals. A plain Java project, includes unit tests, code coverage, mutation tests, and integration tests.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DownerName="My-ownerName"   -Dyear="My-year"   -DarchetypeGroupId="info.tomfi.archetypes"   -DarchetypeArtifactId="java-advanced"   -DarchetypeVersion="1.0.2"   -DinteractiveMode=false 

Required parameters for generate java project:

ownerName
validationRegex: none
year
validationRegex: none

Details about maven archetype java-advanced

GroupId

GroupId

info.tomfi.archetypes
ArtifactId

ArtifactId

java-advanced
Version

Version

1.0.2
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-advanced -DarchetypeVersion=1.0.2 -DinteractiveMode=false