| author | Tomas Zeman <tzeman@volny.cz> |
| Wed, 17 Aug 2011 08:48:43 +0200 | |
| changeset 20 | 22424e6508cd |
| parent 13 | 956b455e4ad8 |
| 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 |
|
|
20
22424e6508cd
Added OptionalFieldDisplay, DataTable, Loc helpers
Tomas Zeman <tzeman@volny.cz>
parents:
13
diff
changeset
|
25 |
val lift_record = "net.liftweb" %% "lift-record" % liftVer |
| 0 | 26 |
|
27 |
// logging |
|
28 |
val logback = "ch.qos.logback" % "logback-classic" % "0.9.28" % "runtime" |
|
29 |
||
30 |
// servlet + jetty |
|
31 |
val servlet = "javax.servlet" % "servlet-api" % "2.5" % "provided" |
|
32 |
val jetty6 = "org.mortbay.jetty" % "jetty" % "6.1.23" % "test" |
|
33 |
||
34 |
// testing |
|
35 |
val scalatest = "org.scalatest" % "scalatest" % "1.1" % "test" |
|
36 |
val h2 = "com.h2database" % "h2" % "1.2.142" % "test" |
|
37 |
||
38 |
// use local mvn repo |
|
39 |
val mavenLocal = "Local Maven Repository" at "file://" + Path.userHome + |
|
40 |
"/.m2/repository" |
|
41 |
||
42 |
/* |
|
43 |
override def compileOptions = super.compileOptions ++ |
|
44 |
Seq(Unchecked) |
|
45 |
*/ |
|
46 |
} |
|
47 |
||
48 |
||
49 |
// vim: set ts=2 sw=2 et: |