io.netty:netty: 3.8.0.Final -> 3.10.3.Final org.slf4j:slf4j-api: 1.7.7 -> 1.7.12 org.fusesource.leveldbjni:leveldbjni-all:optional;provided: 1.7 -> 1.8 org.apache.camel:camel-core: 2.13.0 -> 2.13.4 ch.qos.logback:logback-classic:test: 1.0.13 -> 1.1.3 junit:junit:test: 4.10 -> 4.12 org.scalatest:scalatest:test: 2.1.3 -> 2.2.4 org.mockito:mockito-all:test: 1.9.5 -> 1.10.19 org.scala-lang.modules:scala-xml:test: 1.0.1 -> 1.0.4 com.novocode:junit-interface:test : 0.8 -> 0.11 org.slf4j:jul-to-slf4j:test: 1.7.7 -> 1.7.12 org.slf4j:log4j-over-slf4j:test: 1.7.7 -> 1.7.12 com.codahale.metrics:metrics-core:test: 3.0.1 -> 3.0.2 com.codahale.metrics:metrics-jvm:test: 3.0.1 -> 3.0.2 org.scalacheck:scalacheck:test: 1.11.3 -> 1.11.6 org.apache.commons:commons-math:test: 2.1 -> 2.2 commons-codec:commons-codec:test: 1.7 -> 1.10
47 lines
2.2 KiB
Scala
47 lines
2.2 KiB
Scala
import com.typesafe.sbt.SbtMultiJvm
|
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
|
|
|
|
val akkaVersion = "2.4-SNAPSHOT"
|
|
|
|
val project = Project(
|
|
id = "akka-sample-cluster-java",
|
|
base = file("."),
|
|
settings = Project.defaultSettings ++ SbtMultiJvm.multiJvmSettings ++ Seq(
|
|
name := "akka-sample-cluster-java",
|
|
version := "2.4-SNAPSHOT",
|
|
scalaVersion := "2.11.6",
|
|
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
|
|
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"),
|
|
javacOptions in doc in Compile := Seq("-source", "1.8", "-Xdoclint:none"),
|
|
libraryDependencies ++= Seq(
|
|
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
|
|
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
|
|
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
|
|
"com.typesafe.akka" %% "akka-cluster-metrics" % akkaVersion,
|
|
"com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion,
|
|
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion,
|
|
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
|
|
"io.kamon" % "sigar-loader" % "1.6.5-rev001"),
|
|
javaOptions in run ++= Seq(
|
|
"-Xms128m", "-Xmx1024m"),
|
|
Keys.fork in run := true,
|
|
mainClass in (Compile, run) := Some("sample.cluster.simple.SimpleClusterApp"),
|
|
// make sure that MultiJvm test are compiled by the default test compilation
|
|
compile in MultiJvm <<= (compile in MultiJvm) triggeredBy (compile in Test),
|
|
// disable parallel tests
|
|
parallelExecution in Test := false,
|
|
// make sure that MultiJvm tests are executed by the default test target,
|
|
// and combine the results from ordinary test and multi-jvm tests
|
|
executeTests in Test <<= (executeTests in Test, executeTests in MultiJvm) map {
|
|
case (testResults, multiNodeResults) =>
|
|
val overall =
|
|
if (testResults.overall.id < multiNodeResults.overall.id)
|
|
multiNodeResults.overall
|
|
else
|
|
testResults.overall
|
|
Tests.Output(overall,
|
|
testResults.events ++ multiNodeResults.events,
|
|
testResults.summaries ++ multiNodeResults.summaries)
|
|
}
|
|
)
|
|
) configs (MultiJvm)
|