Create Java project with Maven archetype cwf-webapp-archetype

Template for creating a web application.

Create a Java Project by archetype cwf-webapp-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DdisplayName="My-displayName"   -Dversion="My-version"   -DcwfVersion="My-cwfVersion"   -DarchetypeGroupId="org.hspconsortium.carewebframework"   -DarchetypeArtifactId="cwf-webapp-archetype"   -DarchetypeVersion="3.0.0-RC1"   -DinteractiveMode=false 

Required parameters for generate java project:

displayName
validationRegex: none
version
validationRegex: none
cwfVersion
validationRegex: none

Details about maven archetype cwf-webapp-archetype

GroupId

GroupId

org.hspconsortium.carewebframework
ArtifactId

ArtifactId

cwf-webapp-archetype
Version

Version

3.0.0-RC1
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.hspconsortium.carewebframework -DarchetypeArtifactId=cwf-webapp-archetype -DarchetypeVersion=3.0.0-RC1 -DinteractiveMode=false