aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: e35d7505b4df891d8eee2dec97043eebb1371231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import sbt._
import Keys._

lazy val akkaHttpV = "2.4.8"

lazy val core = (project in file(".")).
  settings(name := "core").
  settings(
    libraryDependencies ++= Seq(
      "com.typesafe.akka"  %% "akka-http-core" % akkaHttpV,
      "com.typesafe.akka"  %% "akka-http-experimental" % akkaHttpV,
      "com.typesafe.akka"  %% "akka-http-jackson-experimental" % akkaHttpV,
      "com.typesafe.akka"  %% "akka-http-spray-json-experimental" % akkaHttpV,
      "com.typesafe.akka"  %% "akka-http-testkit" % akkaHttpV,
      "org.scalatest"      %  "scalatest_2.11" % "2.2.1" % "test",
      "org.mockito"          % "mockito-core" % "1.9.5" % "test",
      "com.typesafe.slick" %% "slick"  % "3.1.1",
      "com.typesafe"       %  "config" % "1.2.1",
      "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
      "ch.qos.logback"     % "logback-classic" % "1.1.3",
      "org.slf4j"          % "slf4j-nop"    % "1.6.4",
      "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.7.1"
    ))
  .gitPluginConfiguration
  .settings(publicationSettings ++ releaseSettings)