aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorvlad <vlad@driver.xyz>2017-06-13 10:25:55 -0700
committervlad <vlad@driver.xyz>2017-06-13 10:25:55 -0700
commit0000a65ab4479a2a40e2d6468036438e9705b4aa (patch)
tree60c868828741e7e5367aa7b6d167abbdaf91d5b8 /build.sbt
downloadrest-query-0000a65ab4479a2a40e2d6468036438e9705b4aa.tar.gz
rest-query-0000a65ab4479a2a40e2d6468036438e9705b4aa.tar.bz2
rest-query-0000a65ab4479a2a40e2d6468036438e9705b4aa.zip
Initial extraction of Driver non-specific utilities
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt29
1 files changed, 29 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..8b0efa4
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,29 @@
+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.asynchttpclient" % "async-http-client" % "2.0.24",
+ "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",
+ "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"
+ ))