aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorZach Smith <zach@driver.xyz>2017-05-01 17:37:45 -0700
committerZach Smith <zach@driver.xyz>2017-05-01 17:37:45 -0700
commit066417ab2ca1cc2a8aab76c182115573ec7f5405 (patch)
tree8895f2695248167596384957898168735b983900 /build.sbt
parentde978cf0a1e44cf906b407ca27089a16537f05c7 (diff)
downloaddriver-core-066417ab2ca1cc2a8aab76c182115573ec7f5405.tar.gz
driver-core-066417ab2ca1cc2a8aab76c182115573ec7f5405.tar.bz2
driver-core-066417ab2ca1cc2a8aab76c182115573ec7f5405.zip
Bump sbt-settings and fix errorsv0.12.3
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt33
1 files changed, 15 insertions, 18 deletions
diff --git a/build.sbt b/build.sbt
index d4cf068..c393249 100644
--- a/build.sbt
+++ b/build.sbt
@@ -4,22 +4,19 @@ import Keys._
lazy val akkaHttpV = "10.0.5"
lazy val core = (project in file("."))
- .settings(name := "core")
- .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.scalatest" % "scalatest_2.11" % "2.2.6" % "test",
- "org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
- "org.mockito" % "mockito-core" % "1.9.5" % "test",
- "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.9.1",
- "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
- "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"
- ))
- .gitPluginConfiguration
+ .driverLibrary("core")
.settings(lintingSettings ++ formatSettings)
- .settings(repositoriesSettings ++ publicationSettings ++ releaseSettings)
+ .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.scalatest" % "scalatest_2.11" % "2.2.6" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
+ "org.mockito" % "mockito-core" % "1.9.5" % "test",
+ "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.9.1",
+ "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
+ "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"
+ ))