diff -r f1551f9d3d3e -r 641c7190c566 build.sbt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.sbt Mon Apr 02 00:06:52 2012 +0200 @@ -0,0 +1,36 @@ +name := "fis" + +version := "0.2-SNAPSHOT" + +organization := "Tomas Zeman" + +scalaVersion := "2.8.2" + +{ +val liftVer = "2.4" +libraryDependencies ++= Seq( + "net.liftweb" %% "lift-squeryl-record" % liftVer, + "net.liftweb" %% "lift-mapper" % 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") + +