Create Java project with Maven archetype turbine-webapp-4.0

This archetype sets up a web application project based on Apache Turbine 4.0M1

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

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dturbine_app_name="My-turbine_app_name"   -Dturbine_intake_file="My-turbine_intake_file"   -Dturbine_database_name="My-turbine_database_name"   -Dturbine_database_adapter="My-turbine_database_adapter"   -Dturbine_database_jndipath="My-turbine_database_jndipath"   -DarchetypeGroupId="org.apache.turbine"   -DarchetypeArtifactId="turbine-webapp-4.0"   -DarchetypeVersion="1.0.0"   -DinteractiveMode=false 

Required parameters for generate java project:

turbine_app_name
validationRegex: none
turbine_intake_file
validationRegex: none
turbine_database_name
validationRegex: none
turbine_database_adapter
validationRegex: none
turbine_database_jndipath
validationRegex: none

Details about maven archetype turbine-webapp-4.0

GroupId

GroupId

org.apache.turbine
ArtifactId

ArtifactId

turbine-webapp-4.0
Version

Version

1.0.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=org.apache.turbine -DarchetypeArtifactId=turbine-webapp-4.0 -DarchetypeVersion=1.0.0 -DinteractiveMode=false