-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
39 lines (33 loc) · 1.68 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
29
30
31
32
33
34
35
36
37
38
39
enablePlugins(JavaAppPackaging)
lazy val commonSettings = Seq(
organization := "org.bustos",
version := "0.3.0",
scalaVersion := "2.12.4"
)
lazy val mainProject = (project in file("."))
.settings(name := "who-won")
.settings(commonSettings: _*)
.settings(libraryDependencies ++= projectLibraries)
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
val slf4j_version = "1.7.6"
val akka_http_version = "10.0.11"
val akka_version = "2.4.20"
val projectLibraries = Seq(
"com.google.cloud" % "google-cloud-vision" % "1.64.0",
"com.amazonaws" % "aws-java-sdk" % "1.9.18",
"com.typesafe.akka" %% "akka-http-core" % akka_http_version,
"com.typesafe.akka" %% "akka-http" % akka_http_version,
"com.typesafe.akka" %% "akka-http-spray-json" % akka_http_version,
"com.typesafe.akka" %% "akka-actor" % akka_version,
"com.typesafe.slick" %% "slick" % "2.1.0",
"com.typesafe.akka" %% "akka-http-testkit" % akka_http_version,
"org.scalatest" %% "scalatest" % "3.0.1" % Test,
"log4j" % "log4j" % "1.2.14",
"org.slf4j" % "slf4j-api" % slf4j_version,
"org.slf4j" % "slf4j-simple" % slf4j_version,
"mysql" % "mysql-connector-java" % "8.0.11",
"joda-time" % "joda-time" % "2.8.1",
"org.joda" % "joda-convert" % "1.2",
"com.github.tototoshi" %% "scala-csv" % "1.3.5",
"javax.xml.bind" % "jaxb-api" % "2.3.0"
)