build.sbt
changeset 21 641c7190c566
child 22 94ed9cfdb123
equal deleted inserted replaced
20:f1551f9d3d3e 21:641c7190c566
       
     1 name := "fis"
       
     2 
       
     3 version := "0.2-SNAPSHOT"
       
     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-mapper" % liftVer,
       
    14   "net.liftweb" %% "lift-webkit" % liftVer,
       
    15   "net.liftweb" %% "lift-widgets" % liftVer
       
    16 )
       
    17 }
       
    18 
       
    19 libraryDependencies ++= Seq(
       
    20   "org.mortbay.jetty" % "jetty" % "6.1.26" % "container",
       
    21   "postgresql" % "postgresql" % "9.1-901-1.jdbc4" % "runtime",
       
    22   "ch.qos.logback" % "logback-classic" % "0.9.29" % "runtime",
       
    23   "org.scalatest" %% "scalatest" % "1.7.1" % "test"
       
    24   //"com.h2database" % "h2" % "1.3.165" % "test"
       
    25 )
       
    26 
       
    27 seq(webSettings :_*)
       
    28 
       
    29 port in container.Configuration := 8081
       
    30 
       
    31 // compile options
       
    32 scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked")
       
    33 
       
    34 javacOptions  ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")
       
    35 
       
    36