Skip to content

Commit

Permalink
=sam akka#16402 akka#16402 add explicit dependencies to samples
Browse files Browse the repository at this point in the history
Only first level transitive dependencies are left, when
transforming sample build definitions from library to project
dependencies. Therefore explicitly add akka dependencies that
samples use.
  • Loading branch information
2m committed Nov 27, 2014
1 parent 9073b2c commit 22696f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions akka-samples/akka-sample-cluster-java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ val project = Project(
javacOptions in doc in Compile := Seq("-source", "1.6"), // javadoc does not support -target and -Xlint flags
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-contrib" % akkaVersion,
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion,
Expand Down
1 change: 1 addition & 0 deletions akka-samples/akka-sample-cluster-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ val project = Project(
javacOptions in Compile ++= Seq("-source", "1.6", "-target", "1.6", "-Xlint:unchecked", "-Xlint:deprecation"),
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-contrib" % akkaVersion,
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion,
Expand Down
1 change: 1 addition & 0 deletions akka-samples/akka-sample-multi-node-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ val project = Project(
version := "2.4-SNAPSHOT",
scalaVersion := "2.10.4",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion,
"org.scalatest" %% "scalatest" % "2.2.1" % "test"),
Expand Down

0 comments on commit 22696f0

Please sign in to comment.