lift helloWorld

xp , scala2.8  apache-maven-2.2.1
============

1 . 下载并安装Maven

配置好环境变量后测试
mvn --version

2.  创建lift
Using Scala 2.8
mvn archetype:generate ^
 -DarchetypeGroupId=net.liftweb ^
 -DarchetypeArtifactId=lift-archetype-basic_2.8.0 ^
 -DarchetypeVersion=2.1-SNAPSHOT ^
 -DarchetypeRepository=http://scala-tools.org/repo-snapshots ^
 -DremoteRepositories=http://scala-tools.org/repo-snapshots ^
 -DgroupId=com.company ^
 -DartifactId=lift_test ^
 -Dversion=1.0


The last 3 arguments are about your newly created application: the package (com.company), name (lift_test) and version (1.0). Change it as needed.

3. Start the Webserver
mvn jetty:run

参考
http://www.assembla.com/wiki/show/liftweb/Using_Maven

你可能感兴趣的:(apache,maven,scala,.net,XP)