aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: 0baf2f08d61aa02fa6380e8ab3c4c07ba02da3b1 (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 core = (project in file("."))
  .driverLibrary("pds-ui-common")
  .settings(scalastyleSettings ++ /* wartRemoverSettings ++ */ formatSettings)
  .settings(libraryDependencies ++= Seq(
    "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",
    "com.typesafe.play"              %% "play"                   % "2.5.15",
    "org.davidbild"                  %% "tristate-core"          % "0.2.0",
    "org.davidbild"                  %% "tristate-play"          % "0.2.0" exclude ("com.typesafe.play", "play-json"),
    "org.asynchttpclient"            % "async-http-client"       % "2.0.24",
    "io.getquill"                    %% "quill-jdbc"             % "1.2.1",
    "io.github.cloudify"             %% "spdf"                   % "1.4.0",
    "de.svenkubiak"                  % "jBCrypt"                 % "0.4.1",
    "com.google.cloud"               % "google-cloud-storage"    % "0.9.4-beta",
    "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"
  ))