* load sample builds from their definitions and replace library dependencies with project ones * remove redefined sample build definitions * test osgi sample by running a maven command
10 lines
231 B
Scala
10 lines
231 B
Scala
name := "akka-sample-remote-java"
|
|
|
|
version := "2.4-SNAPSHOT"
|
|
|
|
scalaVersion := "2.10.4"
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
|
|
"com.typesafe.akka" %% "akka-remote" % "2.4-SNAPSHOT"
|
|
)
|