forked from cyberzac/bitcex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
82 lines (68 loc) · 2.94 KB
/
build.sbt
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
organization := "org.bitcex"
name := "Svenska Bitcoin"
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.9.1"
retrieveManaged := true
seq(webSettings: _*)
resolvers ++= Seq(
"snapshots" at "http://scala-tools.org/repo-snapshots",
"releases" at "http://scala-tools.org/repo-releases",
"typesafe" at "http://repo.typesafe.com/typesafe/releases",
"restlet" at "http://maven.restlet.org"
)
libraryDependencies ++= {
val akka_version = "1.2"
Seq(
"se.scalablesolutions.akka" % "akka-actor" % akka_version,
"se.scalablesolutions.akka" % "akka-spring" % akka_version,
"se.scalablesolutions.akka" % "akka-camel" % akka_version,
"se.scalablesolutions.akka" % "akka-camel-typed" % akka_version,
"se.scalablesolutions.akka" % "akka-testkit" % akka_version
)
}
// Todo check versions of unfiltered
// Todo check versions of dispatch
libraryDependencies ++= {
val camelVersion = "2.8.1"
val springVersion = "3.0.5.RELEASE"
val slf4jVersion = "1.6.2"
val liftVersion = "2.4-SNAPSHOT"
val restletVersion = "2.0.8"
val logbackVersion = "0.9.30"
// val unfiltered_version = "0.4.1"
val dispatch_version = "0.8.5"
Seq(
"joda-time" % "joda-time" % "1.6.1",
"net.liftweb" %% "lift-json" % liftVersion,
"saxon" % "saxon-dom" % "9.1.0.8j",
"org.scala-tools.testing" % "specs_2.8.1" % "1.6.7" % "test",
"org.specs2" %% "specs2" % "1.5",
// "org.specs2" %% "specs2-scalaz-core" % "6.0.RC2" % "test",
"org.scalatest" % "scalatest" % "1.2" % "test",
// "org.eclipse.jetty" % "jetty-webapp" % "7.3.0.v20110203" % "jetty",
"org.mortbay.jetty" % "jetty" % "6.1.22" % "container",
// "net.databinder" %% "unfiltered-jetty" % unfiltered_version,
// "net.databinder" %% "unfiltered-filter" % unfiltered_version,
"net.databinder" %% "dispatch-http" % dispatch_version,
// "org.apache.camel" % "apache-camel" % camelVersion,
"org.apache.camel" % "camel-core" % camelVersion,
"org.apache.camel" % "camel-scala" % camelVersion,
"org.apache.camel" % "camel-servlet" % camelVersion,
"org.apache.camel" % "camel-spring" % camelVersion,
"org.apache.camel" % "camel-velocity" % camelVersion,
"org.apache.camel" % "camel-jetty" % camelVersion,
"org.apache.camel" % "camel-mail" % camelVersion,
"org.apache.camel" % "camel-restlet" % camelVersion,
"org.apache.camel" % "camel-test" % camelVersion % "test",
"org.springframework" % "spring-core" % springVersion,
"org.springframework" % "spring-web" % springVersion,
"org.restlet.jee" % "org.restlet.ext.spring" % restletVersion,
"org.restlet.jee" % "org.restlet.ext.slf4j" % restletVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion,
// "org.slf4j" % "slf4j-log4j12" % slf4jVersion,
"ch.qos.logback" % "logback-core" % logbackVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion,
"org.mortbay.jetty" % "jetty" % "6.1.22" % "container",
"com.weiglewilczek.slf4s" %% "slf4s" % "1.0.7"
)
}