diff --git a/.gitignore b/.gitignore index 1062418..4bfa550 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .idea/ *.iml +target/ diff --git a/README.md b/README.md index 145977a..b270d4b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ http://akka.io/ http://spray.io/ Spray HTTP - Directives -http://spray.io/documentation/1.2.1/spray-routing/predefined-directives-alphabetically/ +http://spray.io/documentation/1.2.2/spray-routing/predefined-directives-alphabetically/ Spray-JSON https://github.com/spray/spray-json diff --git a/mvn-skeleton/pom.xml b/mvn-skeleton/pom.xml index 792d083..ece21db 100644 --- a/mvn-skeleton/pom.xml +++ b/mvn-skeleton/pom.xml @@ -6,12 +6,12 @@ com.cluonflux polyglot-scala-workshop - 0.1-SNAPSHOT + 0.2-SNAPSHOT - 2.10.4 - 2.10 - 2.3.2 + 2.11.6 + 2.11 + 2.3.11 @@ -33,10 +33,10 @@ net.alchim31.maven scala-maven-plugin - 3.1.6 + 3.2.0 - \ No newline at end of file + diff --git a/sbt-skeleton/build.sbt b/sbt-skeleton/build.sbt index 0d73b7d..6a64830 100644 --- a/sbt-skeleton/build.sbt +++ b/sbt-skeleton/build.sbt @@ -1,6 +1,8 @@ +scalaVersion := "2.11.6" + libraryDependencies := Seq( - "com.typesafe.akka" %% "akka-actor" % "2.3.2", - "io.spray" % "spray-can" % "1.3.1", - "io.spray" % "spray-routing" % "1.3.1", - "io.spray" %% "spray-json" % "1.2.6" + "com.typesafe.akka" %% "akka-actor" % "2.3.11", + "io.spray" %% "spray-can" % "1.3.3", + "io.spray" %% "spray-routing" % "1.3.3", + "io.spray" %% "spray-json" % "1.3.2" )