Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-31 07:53:27 +0300
committerChris Rebert <code@rebertia.com>2014-10-31 07:53:27 +0300
commitb9b46994135a68cf6b4eaea3e43992f6fb9d6355 (patch)
treeb8239e65e6a65d579f9f5b037e0d94f37fdbf291
parentba92172780b6dcafc25bde5d0ef3001714d857e5 (diff)
update Akka & Spray
-rw-r--r--build.sbt14
1 files changed, 7 insertions, 7 deletions
diff --git a/build.sbt b/build.sbt
index 80bbe74..822942a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -11,15 +11,15 @@ resolvers ++= Seq("snapshots", "releases").map(Resolver.sonatypeRepo)
libraryDependencies += "org.eclipse.mylyn.github" % "org.eclipse.egit.github.core" % "2.1.5"
libraryDependencies ++= {
- val akkaV = "2.3.3"
- val sprayV = "1.3.1"
+ val akkaV = "2.3.6"
+ val sprayV = "1.3.2"
Seq(
- "io.spray" % "spray-can" % sprayV,
- "io.spray" % "spray-routing" % sprayV,
- "io.spray" % "spray-testkit" % sprayV % "test",
+ "io.spray" %% "spray-can" % sprayV,
+ "io.spray" %% "spray-routing" % sprayV,
+ "io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
- "com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
- "org.specs2" %% "specs2" % "2.3.12" % "test"
+ "com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
+ "org.specs2" %% "specs2" % "2.3.12" % "test"
)
}