| author | Tomas Zeman <tzeman@volny.cz> |
| Tue, 03 May 2011 10:46:35 +0200 | |
| changeset 13 | 956b455e4ad8 |
| parent 0 | c500a54abf33 |
| child 20 | 22424e6508cd |
| permissions | -rw-r--r-- |
| 0 | 1 |
/* |
2 |
* Copyright 2011 Tomas Zeman <tzeman@volny.cz> |
|
3 |
* |
|
4 |
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
5 |
* you may not use this file except in compliance with the License. |
|
6 |
* You may obtain a copy of the License at |
|
7 |
* |
|
8 |
* http://www.apache.org/licenses/LICENSE-2.0 |
|
9 |
* |
|
10 |
* Unless required by applicable law or agreed to in writing, software |
|
11 |
* distributed under the License is distributed on an "AS IS" BASIS, |
|
12 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
13 |
* See the License for the specific language governing permissions and |
|
14 |
* limitations under the License. |
|
15 |
*/ |
|
16 |
import sbt._ |
|
17 |
||
18 |
class LiftProject(info: ProjectInfo) extends DefaultProject(info) {
|
|
19 |
||
|
13
956b455e4ad8
Updated lift -> 2.3; sbt -> 0.7.5
Tomas Zeman <tzeman@volny.cz>
parents:
0
diff
changeset
|
20 |
val liftVer = "2.3" |
| 0 | 21 |
|
22 |
// lift |
|
23 |
val lift_mapper = "net.liftweb" %% "lift-mapper" % liftVer |
|
24 |
val lift_widgets = "net.liftweb" %% "lift-widgets" % liftVer |
|
25 |
||
26 |
// logging |
|
27 |
val logback = "ch.qos.logback" % "logback-classic" % "0.9.28" % "runtime" |
|
28 |
||
29 |
// servlet + jetty |
|
30 |
val servlet = "javax.servlet" % "servlet-api" % "2.5" % "provided" |
|
31 |
val jetty6 = "org.mortbay.jetty" % "jetty" % "6.1.23" % "test" |
|
32 |
||
33 |
// testing |
|
34 |
val scalatest = "org.scalatest" % "scalatest" % "1.1" % "test" |
|
35 |
val h2 = "com.h2database" % "h2" % "1.2.142" % "test" |
|
36 |
||
37 |
// use local mvn repo |
|
38 |
val mavenLocal = "Local Maven Repository" at "file://" + Path.userHome + |
|
39 |
"/.m2/repository" |
|
40 |
||
41 |
/* |
|
42 |
override def compileOptions = super.compileOptions ++ |
|
43 |
Seq(Unchecked) |
|
44 |
*/ |
|
45 |
} |
|
46 |
||
47 |
||
48 |
// vim: set ts=2 sw=2 et: |