From c8ea061472a3a4598df4b4f5b8421cfbb848cbbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Antonsson?= Date: Wed, 9 Apr 2014 11:40:31 +0200 Subject: [PATCH] =pro Update test dependencies to Scala 2.11 cross published versions --- .../scala/code/docs/persistence/PersistenceDocSpec.scala | 8 ++++---- project/AkkaBuild.scala | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala b/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala index 6253446802..1292d2a517 100644 --- a/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala +++ b/akka-docs/rst/scala/code/docs/persistence/PersistenceDocSpec.scala @@ -84,16 +84,16 @@ trait PersistenceDocSpec { } //#deletion } - + class MyProcessor4 extends Processor { //#recovery-completed override def preStart(): Unit = { super.preStart() self ! "FIRST" } - + def receive = initializing.orElse(active) - + def initializing: Receive = { case "FIRST" => recoveryCompleted() @@ -102,7 +102,7 @@ trait PersistenceDocSpec { case other if recoveryFinished => stash() } - + def recoveryCompleted(): Unit = { // perform init after recovery, before any other messages // ... diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index d541f97509..7ec56cd44e 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -1001,9 +1001,9 @@ object Dependencies { val scalaStmVersion = System.getProperty("akka.build.scalaStmVersion", "0.7") val scalaZeroMQVersion = System.getProperty("akka.build.scalaZeroMQVersion", "0.0.7") val genJavaDocVersion = System.getProperty("akka.build.genJavaDocVersion", "0.7") - val scalaTestVersion = System.getProperty("akka.build.scalaTestVersion", "2.0") - val scalaCheckVersion = System.getProperty("akka.build.scalaCheckVersion", "1.10.1") - val scalaContinuationsVersion = System.getProperty("akka.build.scalaContinuationsVersion", "1.0.0-RC3") + val scalaTestVersion = System.getProperty("akka.build.scalaTestVersion", "2.1.3") + val scalaCheckVersion = System.getProperty("akka.build.scalaCheckVersion", "1.11.3") + val scalaContinuationsVersion = System.getProperty("akka.build.scalaContinuationsVersion", "1.0.1") } object Compile {