Create Java project with Maven archetype jee8project-archetype

Archetype for building a basic JavaEE8 project.

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.dirtylabcoat"   -DarchetypeArtifactId="jee8project-archetype"   -DarchetypeVersion="1.1"   -DinteractiveMode=false 

Details about maven archetype jee8project-archetype

GroupId

GroupId

org.dirtylabcoat
ArtifactId

ArtifactId

jee8project-archetype
Version

Version

1.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.dirtylabcoat -DarchetypeArtifactId=jee8project-archetype -DarchetypeVersion=1.1 -DinteractiveMode=false