-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (19 loc) · 1.23 KB
/
build.sbt
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
26
27
28
name := "kraken-api-scala"
version := "1.0"
scalaVersion := "2.11.8"
libraryDependencies += "org.apache.commons" % "commons-dbcp2" % "2.1.1"
libraryDependencies += "org.postgresql" % "postgresql" % "9.4.1209.jre7"
libraryDependencies += "com.h2database" % "h2" % "1.4.192"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.7"
libraryDependencies += "org.scalikejdbc" %% "scalikejdbc" % "2.4.2"
libraryDependencies += "org.scalikejdbc" %% "scalikejdbc-test" % "2.4.2" % "test"
libraryDependencies += "org.scalikejdbc" % "scalikejdbc-config_2.11" % "2.4.2"
libraryDependencies += "com.squareup.retrofit2" % "retrofit" % "2.1.0"
//libraryDependencies += "com.squareup.retrofit2" % "converter-gson" % "2.1.0"
//libraryDependencies += "com.squareup.retrofit2" % "converter-jackson" % "2.1.0"
//libraryDependencies += "com.fasterxml.jackson.module" % "jackson-module-scala_2.11" % "2.7.5"
libraryDependencies += "org.scalactic" %% "scalactic" % "2.2.6"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.6" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.2" % "test"
libraryDependencies += "org.json4s" % "json4s-jackson_2.11" % "3.4.0"
libraryDependencies += "org.json4s" % "json4s-native_2.11" % "3.4.0"