-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (28 loc) · 1.01 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
name := "scully"
version := "0.0.0"
scalaVersion := "2.12.1"
lazy val versions = new {
val finch = "0.15.1"
val circe = "0.8.0"
val elastic = "5.4.10"
val test = "3.0.0"
val log = "1.7.12"
}
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
"Twitter Maven" at "https://maven.twttr.com"
)
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-core" % versions.finch,
"com.github.finagle" %% "finch-generic" % versions.finch,
"com.github.finagle" %% "finch-circe" % versions.finch,
"com.sksamuel.elastic4s" %% "elastic4s-core" % versions.elastic,
"com.sksamuel.elastic4s" %% "elastic4s-http" % versions.elastic,
"com.sksamuel.elastic4s" %% "elastic4s-circe" % versions.elastic,
"org.slf4j" % "slf4j-simple" % versions.log,
"org.scalatest" %% "scalatest" % versions.test % "test",
"com.sksamuel.elastic4s" %% "elastic4s-core" % versions.elastic % "test",
"com.sksamuel.elastic4s" %% "elastic4s-embedded" % versions.elastic % "test"
)
enablePlugins(JavaAppPackaging)
enablePlugins(NewRelic)