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

github.com/twbs/savage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-04-24 01:48:22 +0300
committerChris Rebert <code@rebertia.com>2015-04-24 01:52:44 +0300
commit676ad3ea7a41900f90928756fd500c58a0132543 (patch)
treead8e9f77f83625699f874cb985ffdb5016a2a778 /build.sbt
parentbfbe885cb7a035c69d546bdb9146dc096ddf7f9b (diff)
Workaround https://bugs.eclipse.org/bugs/show_bug.cgi?id=464465
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 3 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 10928fa..d1cc7f5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -14,11 +14,10 @@ resolvers += "Eclipse Foundation Snapshots" at "https://repo.eclipse.org/content
libraryDependencies += "org.eclipse.mylyn.github" % "org.eclipse.egit.github.core" % "4.0.0.201503231230-m1"
-libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.2"
-
-// Gson is missing when using the EGit snapshot version for some reason
+// egit-github needs Gson, but doesn't explicitly require it
+libraryDependencies += "com.google.code.gson" % "gson" % "2.3.1"
-libraryDependencies += "com.google.code.gson" % "gson" % "2.2.2"
+libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.2"
libraryDependencies ++= {
val akkaV = "2.3.9"