forked from nilsga/akka-persistence-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·38 lines (29 loc) · 1.14 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
organization := "com.github.nilsga"
name := "akka-persistence-elasticsearch"
version := "1.0.3_233"
scalaVersion := "2.11.8"
val akkaVersion = "2.4.7"
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" % "2.3.3",
"com.sksamuel.elastic4s" %% "elastic4s-streams" % "2.3.0",
"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.7" % "test",
"net.java.dev.jna" % "jna" % "4.2.2" % "test"
)