-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
executable file
·37 lines (28 loc) · 1.08 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
organization := "com.github.nilsga"
name := "akka-persistence-elasticsearch"
version := "1.0.3"
scalaVersion := "2.11.7"
val akkaVersion = "2.4.1"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
parallelExecution in Test := false
credentials += Credentials(
"Artifactory Realm",
"oss.jfrog.org",
sys.env.getOrElse("OSS_JFROG_USER", ""),
sys.env.getOrElse("OSS_JFROG_PASS", "")
)
publishTo := {
val jfrog = "https://oss.jfrog.org/artifactory/"
if (isSnapshot.value)
Some("OJO Snapshots" at jfrog + "oss-snapshot-local")
else
Some("OJO Releases" at jfrog + "oss-release-local")
}
libraryDependencies ++= Seq(
"org.elasticsearch" % "elasticsearch" % "1.7.1",
"com.sksamuel.elastic4s" %% "elastic4s-streams" % "1.7.4",
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-persistence-tck" % akkaVersion % "test",
"ch.qos.logback" % "logback-classic" % "1.1.3" % "test"
)