pyc-website

main website for pyc inc.

git clone https://9o.is/git/pyc-website.git

Build.scala

(1185B)


      1 import sbt._
      2 import sbt.Keys._
      3 
      4 object LiftProjectBuild extends Build {
      5 
      6   import BuildSettings._
      7 
      8   lazy val root = Project("website", file("."))
      9     .settings(liftAppSettings: _*)
     10     .settings(libraryDependencies ++=
     11       Seq(
     12         "net.liftweb" %% "lift-webkit" % Ver.lift % "compile",
     13         "net.liftweb" %% "lift-mongodb-record" % Ver.lift % "compile",
     14         "net.liftmodules" %% ("mongoauth_"+Ver.lift_edition) % "0.6-SNAPSHOT" % "compile",
     15         "net.liftmodules" %% ("extras_"+Ver.lift_edition) % "0.4-SNAPSHOT" % "compile",
     16         "net.databinder.dispatch" %% "dispatch-core" % "0.10.0",
     17         "org.eclipse.jetty" % "jetty-webapp" % Ver.jetty % "container",
     18         "ch.qos.logback" % "logback-classic" % "1.0.13" % "compile",
     19         "org.scalatest" %% "scalatest" % "1.9.2" % "test",
     20         "com.foursquare" %% "rogue-field_3.0" % "2.3.0-SNAPSHOT" intransitive(),
     21         "com.foursquare" %% "rogue-core_3.0" % "2.3.0-SNAPSHOT" intransitive(),
     22         "com.foursquare" %% "rogue-lift_3.0" % "2.3.0-SNAPSHOT" intransitive(),
     23         "com.foursquare" %% "rogue-index_3.0" % "2.3.0-SNAPSHOT" intransitive(),
     24         "inc.pyc" %% "aws-s3" % "0.1"
     25       )
     26     )
     27 }