-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDependencies.scala
43 lines (33 loc) · 1.4 KB
/
Dependencies.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import sbt._
/**
* Declaration of dependencies, library versions etc.
*/
object Dependencies {
// Common Versions for libraries
val liftVersion = "2.4"
// Functions to create dependencies
val liftDep = (componentId: String, scope: String ) => "net.liftweb" %% componentId % liftVersion % scope
// Actual dependencies
// liftweb
val liftUtil = liftDep("lift-util", "compile")
val liftCommon = liftDep("lift-common", "compile")
val liftWebkit = liftDep("lift-webkit", "compile")
val liftMongoRecord = liftDep("lift-mongodb-record", "compile")
// Rogue - used for Mongo DB Queries
val rogue = "com.foursquare" %% "rogue" % "1.1.1" intransitive()
// Joda time
val jodaTime = "joda-time" % "joda-time" % "2.0"
val jodaConvert = "org.joda" % "joda-convert" % "1.2"
// jetty
val jettyVersion = "8.0.3.v20111011"
val jetty = "org.eclipse.jetty" % "jetty-webapp" % jettyVersion % "container"
val logback = "ch.qos.logback" % "logback-classic" % "1.0.0"
val scalatest = "org.scalatest" %% "scalatest" % "1.6.1" % "test"
val groovy = "org.codehaus.groovy" % "groovy-all" % "1.8.6"
// Dependency groups
val testDeps = Seq(scalatest)
val liftDeps = Seq(liftUtil, liftCommon, liftWebkit, liftMongoRecord, rogue)
val loggingDeps = Seq(logback, groovy, liftCommon)
val jettyDeps = Seq(jetty)
val jodaDeps = Seq(jodaTime, jodaConvert)
}