build.sbt
author Tomas Zeman <tzeman@volny.cz>
Tue, 23 Apr 2013 10:36:04 +0200
changeset 108 ef4e3e0ef83f
parent 97 f6bdff1c40ed
permissions -rw-r--r--
84a94fa29a67504b Task/Project notifications

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