From be8714e8fae9f10d2fe65a5b2f1d940be6b992e6 Mon Sep 17 00:00:00 2001 From: Diego Pacheco Date: Fri, 19 Dec 2014 12:31:27 -0200 Subject: [PATCH] . . --- .../scala/akka-cluster-playground/.classpath | 24 ++++ .../scala/akka-cluster-playground/.gitignore | 3 + .../.idea/IdeaProject.iml | 10 ++ .../scala-cluster-playground-build.iml | 114 ++++++++++++++++++ .../scala-cluster-playground.iml | 36 ++++++ .../scala/akka-cluster-playground/.project | 13 ++ .../scala/akka-cluster-playground/build.sbt | 30 +++++ .../project/build.properties | 1 + .../project/plugins.sbt | 7 ++ .../scala-cluster-playground.iml | 46 +++++++ .../src/main/resources/application.conf | 0 .../akka-microkernel-playground/.gitignore | 3 + 12 files changed, 287 insertions(+) create mode 100644 scripts/scala/akka-cluster-playground/.classpath create mode 100644 scripts/scala/akka-cluster-playground/.gitignore create mode 100644 scripts/scala/akka-cluster-playground/.idea/IdeaProject.iml create mode 100644 scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground-build.iml create mode 100644 scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground.iml create mode 100644 scripts/scala/akka-cluster-playground/.project create mode 100644 scripts/scala/akka-cluster-playground/build.sbt create mode 100644 scripts/scala/akka-cluster-playground/project/build.properties create mode 100644 scripts/scala/akka-cluster-playground/project/plugins.sbt create mode 100644 scripts/scala/akka-cluster-playground/projectFilesBackup/.idea_modules/scala-cluster-playground.iml create mode 100644 scripts/scala/akka-cluster-playground/src/main/resources/application.conf create mode 100644 scripts/scala/akka-microkernel-playground/.gitignore diff --git a/scripts/scala/akka-cluster-playground/.classpath b/scripts/scala/akka-cluster-playground/.classpath new file mode 100644 index 000000000..4deb7b937 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.classpath @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/.gitignore b/scripts/scala/akka-cluster-playground/.gitignore new file mode 100644 index 000000000..ba3c7968c --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.gitignore @@ -0,0 +1,3 @@ +*.class +target +project/target \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/.idea/IdeaProject.iml b/scripts/scala/akka-cluster-playground/.idea/IdeaProject.iml new file mode 100644 index 000000000..f28a145e6 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.idea/IdeaProject.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground-build.iml b/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground-build.iml new file mode 100644 index 000000000..d62f5869d --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground-build.iml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground.iml b/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground.iml new file mode 100644 index 000000000..a6b68ce39 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.idea_modules/scala-cluster-playground.iml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/.project b/scripts/scala/akka-cluster-playground/.project new file mode 100644 index 000000000..f77890c85 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/.project @@ -0,0 +1,13 @@ + + scala-cluster-playground + + + org.scala-ide.sdt.core.scalabuilder + + + + org.scala-ide.sdt.core.scalanature + org.eclipse.jdt.core.javanature + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/build.sbt b/scripts/scala/akka-cluster-playground/build.sbt new file mode 100644 index 000000000..c5269735a --- /dev/null +++ b/scripts/scala/akka-cluster-playground/build.sbt @@ -0,0 +1,30 @@ +name := "scala-cluster-playground" + +version := "1.0" + +scalaVersion := "2.11.4" + +scalaVersion in ThisBuild := "2.11.4" + +resolvers += "Akka Repo" at "http://repo.akka.io/releases" + +resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/" + +resolvers += "Sonatype Repo" at "https://oss.sonatype.org/content/repositories/releases/" + +resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" + +resolvers += "Twitter Repo" at "http://maven.twttr.com/" + +libraryDependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.3.7" + +libraryDependencies += "com.typesafe.akka" % "akka-kernel_2.11" % "2.3.7" + +libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.2" + +libraryDependencies += "com.typesafe.akka" % "akka-remote_2.11" % "2.3.7" + +libraryDependencies += "com.typesafe.akka" % "akka-cluster" % "2.3.7" + +// recompiled to akka 2.3.7 and scala 2.11 +libraryDependencies += "com.romix.akka" % "akka-protostuff-serialization" % "0.1-SNAPSHOT" \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/project/build.properties b/scripts/scala/akka-cluster-playground/project/build.properties new file mode 100644 index 000000000..507528966 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/project/build.properties @@ -0,0 +1 @@ +sbt.version=0.13.5 \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/project/plugins.sbt b/scripts/scala/akka-cluster-playground/project/plugins.sbt new file mode 100644 index 000000000..7a09dbaf6 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/project/plugins.sbt @@ -0,0 +1,7 @@ +addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0") + +addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0") + +addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "0.8.0-M2") + +addSbtPlugin("com.typesafe.akka" % "akka-sbt-plugin" % "2.3-M2") \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/projectFilesBackup/.idea_modules/scala-cluster-playground.iml b/scripts/scala/akka-cluster-playground/projectFilesBackup/.idea_modules/scala-cluster-playground.iml new file mode 100644 index 000000000..afbeab472 --- /dev/null +++ b/scripts/scala/akka-cluster-playground/projectFilesBackup/.idea_modules/scala-cluster-playground.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/scala/akka-cluster-playground/src/main/resources/application.conf b/scripts/scala/akka-cluster-playground/src/main/resources/application.conf new file mode 100644 index 000000000..e69de29bb diff --git a/scripts/scala/akka-microkernel-playground/.gitignore b/scripts/scala/akka-microkernel-playground/.gitignore new file mode 100644 index 000000000..ba3c7968c --- /dev/null +++ b/scripts/scala/akka-microkernel-playground/.gitignore @@ -0,0 +1,3 @@ +*.class +target +project/target \ No newline at end of file