Create Java project with Maven archetype jee6-servlet-minimal-archetype

Minimal Java EE application for servlet containers (Jetty,Tomcat) with a single page demo of CDI, JSF, JPA and Validation to verify everything works.

Create a Java Project by archetype jee6-servlet-minimal-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="org.fluttercode.knappsack"   -DarchetypeArtifactId="jee6-servlet-minimal-archetype"   -DarchetypeVersion="1.0.5"   -DinteractiveMode=false 

Details about maven archetype jee6-servlet-minimal-archetype

GroupId

GroupId

org.fluttercode.knappsack
ArtifactId

ArtifactId

jee6-servlet-minimal-archetype
Version

Version

1.0.5
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.fluttercode.knappsack -DarchetypeArtifactId=jee6-servlet-minimal-archetype -DarchetypeVersion=1.0.5 -DinteractiveMode=false