Create Java project with Maven archetype lift-archetype-sbt_2.7.7

Basic project archetype for Lift Web Framework (with database, logging, user management) using the sbt build system

Create a Java Project by archetype lift-archetype-sbt_2.7.7 with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DscalaVersion="My-scalaVersion"   -DliftVersion="My-liftVersion"   -DarchetypeGroupId="net.liftweb"   -DarchetypeArtifactId="lift-archetype-sbt_2.7.7"   -DarchetypeVersion="2.1-RC2"   -DinteractiveMode=false 

Required parameters for generate java project:

scalaVersion
validationRegex: none
liftVersion
validationRegex: none

Details about maven archetype lift-archetype-sbt_2.7.7

GroupId

GroupId

net.liftweb
ArtifactId

ArtifactId

lift-archetype-sbt_2.7.7
Version

Version

2.1-RC2
Type

Type

maven-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=net.liftweb -DarchetypeArtifactId=lift-archetype-sbt_2.7.7 -DarchetypeVersion=2.1-RC2 -DinteractiveMode=false