-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
51 lines (49 loc) · 1.86 KB
/
build.sbt
File metadata and controls
51 lines (49 loc) · 1.86 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
lazy val commonSettings = Seq(
organization := "com.docurated",
scalaVersion := "2.11.8",
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"clojars" at "https://clojars.org/repo"
)
)
lazy val root = (project in file(".")).
settings(
commonSettings,
name := "Cluster Emcee",
version := "0.2",
libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-management-cluster-http" % "0.3",
"com.amazonaws" % "aws-java-sdk-sqs" % "1.11.215",
"com.typesafe.akka" %% "akka-actor" % "2.5.1",
"com.typesafe.akka" %% "akka-remote" % "2.5.1",
"com.typesafe.akka" %% "akka-slf4j" % "2.5.1",
"com.typesafe.akka" %% "akka-http" % "10.0.6",
"com.typesafe.akka" %% "akka-http-spray-json" % "10.0.6",
"com.typesafe.akka" %% "akka-cluster" % "2.5.1",
"com.typesafe.akka" %% "akka-cluster-tools" % "2.5.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"de.aktey.akka.k8s" %% "seednode-config" % "1.0.1",
"io.riemann" % "riemann-java-client" % "0.4.5",
"org.json4s" %% "json4s-native" % "3.5.0",
"org.json4s" %% "json4s-jackson" % "3.5.0",
"org.json4s" %% "json4s-ext" % "3.5.0",
"org.slf4j" % "slf4j-api" % "1.7.25",
"org.mockito" % "mockito-all" % "1.10.7" % "test",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
)
)
lazy val sample = (project in file("sample")).
settings(
commonSettings,
name := "Cluster Emcee Sample Application",
version := "0.1",
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
"ch.qos.logback" % "logback-core" % "1.2.3",
"com.rometools" % "rome" % "1.9.0",
"commons-io" % "commons-io" % "2.4",
"joda-time" % "joda-time" % "2.9.9",
"org.jsoup" % "jsoup" % "1.11.1"
)
).
dependsOn(root)