name := "fis"
version := "0.2"
organization := "Tomas Zeman"
scalaVersion := "2.8.2"
{
val liftVer = "2.4"
libraryDependencies ++= Seq(
"net.liftweb" %% "lift-squeryl-record" % liftVer,
"net.liftweb" %% "lift-webkit" % liftVer,
"net.liftweb" %% "lift-widgets" % liftVer
)
}
libraryDependencies ++= Seq(
"org.mortbay.jetty" % "jetty" % "6.1.26" % "container",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4" % "runtime",
"ch.qos.logback" % "logback-classic" % "0.9.29" % "runtime",
"org.scalatest" %% "scalatest" % "1.7.1" % "test"
//"com.h2database" % "h2" % "1.3.165" % "test"
)
seq(webSettings :_*)
port in container.Configuration := 8081
// compile options
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked")
javacOptions ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")