Create Java project with Maven archetype pm-wicket-archetype

Template to create a web application with Wicket + Guice + Hibernate

Create a Java Project by archetype pm-wicket-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DdatabaseHost="My-databaseHost"   -DdatabaseUsername="My-databaseUsername"   -DdatabasePassword="My-databasePassword"   -DdatabaseName="My-databaseName"   -DapplicationTitle="My-applicationTitle"   -DdebugEmail="My-debugEmail"   -DSMTPServer="My-SMTPServer"   -DSMTPFrom="My-SMTPFrom"   -DSMTPUsername="My-SMTPUsername"   -DSMTPPassword="My-SMTPPassword"   -DarchetypeGroupId="com.premiumminds"   -DarchetypeArtifactId="pm-wicket-archetype"   -DarchetypeVersion="2.0"   -DinteractiveMode=false 

Required parameters for generate java project:

databaseHost
validationRegex: none
databaseUsername
validationRegex: none
databasePassword
validationRegex: none
databaseName
validationRegex: none
applicationTitle
validationRegex: none
debugEmail
validationRegex: none
SMTPServer
validationRegex: none
SMTPFrom
validationRegex: none
SMTPUsername
validationRegex: none
SMTPPassword
validationRegex: none

Details about maven archetype pm-wicket-archetype

GroupId

GroupId

com.premiumminds
ArtifactId

ArtifactId

pm-wicket-archetype
Version

Version

2.0
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.premiumminds -DarchetypeArtifactId=pm-wicket-archetype -DarchetypeVersion=2.0 -DinteractiveMode=false