scala-news-reader

rss/atom news reader in scala

git clone https://9o.is/git/scala-news-reader.git

Build.scala

(1050B)


      1 import sbt._
      2 import sbt.Keys._
      3 
      4 object LiftProjectBuild extends Build {
      5 
      6   import BuildSettings._
      7 
      8 
      9 
     10   lazy val root = Project("joe-reader", file("."))
     11     .settings(liftAppSettings: _*)
     12     .settings(libraryDependencies ++=
     13       Seq(
     14         "net.liftweb" %% "lift-webkit" % Ver.lift % "compile",
     15         "net.liftweb" %% "lift-mongodb-record" % Ver.lift % "compile",
     16         "net.liftmodules" %% "mongoauth" % (Ver.lift+"-0.4") % "compile",
     17         "net.liftmodules" %% ("extras_"+Ver.lift_edition) % "0.1" % "compile",
     18         "org.eclipse.jetty" % "jetty-webapp" % Ver.jetty % "container",
     19         "ch.qos.logback" % "logback-classic" % "1.0.6" % "compile",
     20         "org.scalatest" %% "scalatest" % "1.9.1" % "test",
     21         "net.databinder.dispatch" %% "dispatch-core" % "0.10.0",
     22         "org.jsoup" % "jsoup" % "1.7.2",
     23         "rome" % "rome" % "1.0",
     24         "org.rometools" % "rome-modules" % "1.0",
     25         "com.typesafe.akka" %% "akka-actor" % "2.1.4",
     26         "net.liftmodules" %% "google-analytics" % (Ver.lift+"-1.0")
     27       )
     28     )
     29 }