build.sbt
author Tomas Zeman <tzeman@volny.cz>
Tue, 05 Jun 2012 15:40:45 +0200
changeset 104 ef29ecada49d
parent 97 f6bdff1c40ed
permissions -rw-r--r--
d6925c97404faf15 Project extensions

name := "fis"

version := "0.3-SNAPSHOT"

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")