Create Java project with Maven archetype javax.faces-war-archetype

An archetype that creates a war project that depends on JSF 2.1.

Create a Java Project by archetype javax.faces-war-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="javax.faces"   -DarchetypeArtifactId="javax.faces-war-archetype"   -DarchetypeVersion="2.1"   -DinteractiveMode=false 

Details about maven archetype javax.faces-war-archetype

GroupId

GroupId

javax.faces
ArtifactId

ArtifactId

javax.faces-war-archetype
Version

Version

2.1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=javax.faces -DarchetypeArtifactId=javax.faces-war-archetype -DarchetypeVersion=2.1 -DinteractiveMode=false