From 28aa46dfe86e22784797d39ca2f047050516b452 Mon Sep 17 00:00:00 2001 From: kuldeep tiwari Date: Sun, 18 Sep 2016 10:27:00 +0530 Subject: [PATCH 1/2] Created pom.xml This shall help in getting these design pattern samples work in Scala+Maven environment. --- pom.xml | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..aee4652 --- /dev/null +++ b/pom.xml @@ -0,0 +1,81 @@ + + 4.0.0 + edu.reactivemessaging.akka + reactiveMessagingWithAkkanScala + 0.0.1-SNAPSHOT + + + 2.11.8 + 2.11 + 2.4.10 + 2.4.10 + 2.3.4 + 2.2.4 + + + + + org.scala-lang + scala-library + ${scala.version} + + + org.scala-lang + scala-reflect + ${scala.version} + + + com.typesafe.akka + akka-actor_2.11 + ${akka.version} + + + com.typesafe.akka + akka-persistence-experimental_2.10 + ${akka.persistence.version} + + + com.rabbitmq + amqp-client + 3.5.6 + + + com.typesafe.akka + akka-testkit_2.11 + ${akka.test.version} + + + + + + src/main/java + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + + + + net.alchim31.maven + scala-maven-plugin + 3.1.6 + + + + compile + testCompile + + + + + + -nobootcp + + + + + + From 8a4c732b20856d3465f1e140aa49dce950162417 Mon Sep 17 00:00:00 2001 From: kuldeep tiwari Date: Sun, 18 Sep 2016 10:32:15 +0530 Subject: [PATCH 2/2] Corrected source folder to src from src/main/java Corrected source folder so that no other change except adding this pom.xml be needed. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aee4652..4d33df8 100644 --- a/pom.xml +++ b/pom.xml @@ -48,7 +48,7 @@ - src/main/java + src org.apache.maven.plugins