|
21
|
1 |
name := "fis"
|
|
|
2 |
|
|
97
|
3 |
version := "0.3-SNAPSHOT"
|
|
21
|
4 |
|
|
|
5 |
organization := "Tomas Zeman"
|
|
|
6 |
|
|
|
7 |
scalaVersion := "2.8.2"
|
|
|
8 |
|
|
|
9 |
{
|
|
|
10 |
val liftVer = "2.4"
|
|
|
11 |
libraryDependencies ++= Seq(
|
|
|
12 |
"net.liftweb" %% "lift-squeryl-record" % liftVer,
|
|
|
13 |
"net.liftweb" %% "lift-webkit" % liftVer,
|
|
|
14 |
"net.liftweb" %% "lift-widgets" % liftVer
|
|
|
15 |
)
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
libraryDependencies ++= Seq(
|
|
|
19 |
"org.mortbay.jetty" % "jetty" % "6.1.26" % "container",
|
|
|
20 |
"postgresql" % "postgresql" % "9.1-901-1.jdbc4" % "runtime",
|
|
|
21 |
"ch.qos.logback" % "logback-classic" % "0.9.29" % "runtime",
|
|
|
22 |
"org.scalatest" %% "scalatest" % "1.7.1" % "test"
|
|
|
23 |
//"com.h2database" % "h2" % "1.3.165" % "test"
|
|
|
24 |
)
|
|
|
25 |
|
|
|
26 |
seq(webSettings :_*)
|
|
|
27 |
|
|
|
28 |
port in container.Configuration := 8081
|
|
|
29 |
|
|
|
30 |
// compile options
|
|
|
31 |
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked")
|
|
|
32 |
|
|
|
33 |
javacOptions ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")
|
|
|
34 |
|
|
|
35 |
|