From 9c38cec1a763fcf2d69302ad988fb67d9313baa6 Mon Sep 17 00:00:00 2001 From: vlad Date: Fri, 16 Jun 2017 16:41:51 -0700 Subject: Using only dependencies which PDS UI had --- build.sbt | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/build.sbt b/build.sbt index 06d6841..6cd3de0 100644 --- a/build.sbt +++ b/build.sbt @@ -1,33 +1,24 @@ import sbt._ import Keys._ -lazy val akkaHttpV = "10.0.5" - lazy val core = (project in file(".")) .driverLibrary("pds-ui-common") .settings(scalastyleSettings ++ /* wartRemoverSettings ++ */ formatSettings) .settings(libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-http-core" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV, - "org.davidbild" %% "tristate-core" % "0.2.0", - "org.davidbild" %% "tristate-play" % "0.2.0" exclude ("com.typesafe.play", "play-json"), + "ch.qos.logback" % "logback-classic" % "1.1.7", + "org.slf4j" % "slf4j-api" % "1.7.21", + "com.typesafe.scala-logging" %% "scala-logging" % "3.4.0", + "com.typesafe" % "config" % "1.3.0", + "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.8.3", + "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.8.4", "org.asynchttpclient" % "async-http-client" % "2.0.24", + "io.getquill" %% "quill-jdbc" % "1.2.1", "io.github.cloudify" %% "spdf" % "1.4.0", - "com.github.pureconfig" %% "pureconfig" % "0.7.2", "de.svenkubiak" % "jBCrypt" % "0.4.1", - "com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.8.4", - "org.scalatest" % "scalatest_2.11" % "2.2.6" % "test", - "org.scalacheck" %% "scalacheck" % "1.12.5" % "test", - "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" 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" + "com.github.pureconfig" %% "pureconfig" % "0.7.2", + "ai.x" %% "diff" % "1.2.0-get-simple-name-fix" % "test", + "org.scalatest" %% "scalatest" % "3.0.0" % "test" )) -- cgit v1.2.3