aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-06-16 16:17:54 -0700
committervlad <vlad@driver.xyz>2017-06-16 16:17:54 -0700
commitf97924f976acaae4a3dea5d875ba4db766221fb3 (patch)
tree28777a037e2f09928b55405b9de9427bf29aa427 /build.sbt
parenta68419098da97f63430cd3626cda47ec6bc49ecb (diff)
downloadrest-query-f97924f976acaae4a3dea5d875ba4db766221fb3.tar.gz
rest-query-f97924f976acaae4a3dea5d875ba4db766221fb3.tar.bz2
rest-query-f97924f976acaae4a3dea5d875ba4db766221fb3.zip
Exclude netty to fix Play
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt14
1 files changed, 8 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index 857fe06..06d6841 100644
--- a/build.sbt
+++ b/build.sbt
@@ -22,10 +22,12 @@ lazy val core = (project in file("."))
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"ai.x" %% "diff" % "1.2.0-get-simple-name-fix" % "test",
"com.github.swagger-akka-http" %% "swagger-akka-http" % "0.9.1",
- "com.google.cloud" % "google-cloud-storage" % "0.9.4-beta",
- "io.getquill" %% "quill-jdbc" % "1.2.1",
- "com.typesafe.slick" %% "slick" % "3.1.1",
- "com.typesafe" % "config" % "1.2.1",
- "com.typesafe.scala-logging" %% "scala-logging" % "3.4.0",
- "ch.qos.logback" % "logback-classic" % "1.1.3"
+ "com.google.cloud" % "google-cloud-storage" % "0.9.4-beta" excludeAll (
+ ExclusionRule(organization = "io.netty")
+ ),
+ "io.getquill" %% "quill-jdbc" % "1.2.1",
+ "com.typesafe.slick" %% "slick" % "3.1.1",
+ "com.typesafe" % "config" % "1.2.1",
+ "com.typesafe.scala-logging" %% "scala-logging" % "3.4.0",
+ "ch.qos.logback" % "logback-classic" % "1.1.3"
))