Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F204D50F5 for ; Thu, 12 May 2011 18:38:32 +0000 (UTC) Received: (qmail 20439 invoked by uid 500); 12 May 2011 18:38:32 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 20413 invoked by uid 500); 12 May 2011 18:38:32 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 20406 invoked by uid 99); 12 May 2011 18:38:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 May 2011 18:38:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 May 2011 18:38:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03B94238890D; Thu, 12 May 2011 18:38:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1102412 - in /activemq/activemq-apollo/trunk: ./ apollo-bdb/ apollo-broker/ apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/ apollo-cassandra/ apollo-cli/ apollo-hawtdb/ apollo-jdbm2/ apollo-openwire/ apollo-scala/ apo... Date: Thu, 12 May 2011 18:38:10 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110512183811.03B94238890D@eris.apache.org> Author: chirino Date: Thu May 12 18:38:10 2011 New Revision: 1102412 URL: http://svn.apache.org/viewvc?rev=1102412&view=rev Log: Upgrade to scala 2.9.0 Modified: activemq/activemq-apollo/trunk/apollo-bdb/pom.xml activemq/activemq-apollo/trunk/apollo-broker/pom.xml activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/StoreFunSuiteSupport.scala activemq/activemq-apollo/trunk/apollo-cassandra/pom.xml activemq/activemq-apollo/trunk/apollo-cli/pom.xml activemq/activemq-apollo/trunk/apollo-hawtdb/pom.xml activemq/activemq-apollo/trunk/apollo-jdbm2/pom.xml activemq/activemq-apollo/trunk/apollo-openwire/pom.xml activemq/activemq-apollo/trunk/apollo-scala/pom.xml activemq/activemq-apollo/trunk/apollo-stomp/pom.xml activemq/activemq-apollo/trunk/apollo-util/pom.xml activemq/activemq-apollo/trunk/apollo-web/pom.xml activemq/activemq-apollo/trunk/apollo-website/pom.xml activemq/activemq-apollo/trunk/pom.xml Modified: activemq/activemq-apollo/trunk/apollo-bdb/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-bdb/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-bdb/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-bdb/pom.xml Thu May 12 18:38:10 2011 @@ -85,7 +85,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-broker/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-broker/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-broker/pom.xml Thu May 12 18:38:10 2011 @@ -144,7 +144,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/StoreFunSuiteSupport.scala URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/StoreFunSuiteSupport.scala?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/StoreFunSuiteSupport.scala (original) +++ activemq/activemq-apollo/trunk/apollo-broker/src/test/scala/org/apache/activemq/apollo/broker/store/StoreFunSuiteSupport.scala Thu May 12 18:38:10 2011 @@ -150,7 +150,8 @@ abstract class StoreFunSuiteSupport exte val B = add_queue("B") val C = add_queue("C") - expectCB(List(A,B,C).toSeq) { cb=> + val seq:Seq[Long] = List(A,B,C).toSeq + expectCB(seq) { cb=> store.list_queues(cb) } } Modified: activemq/activemq-apollo/trunk/apollo-cassandra/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-cassandra/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-cassandra/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-cassandra/pom.xml Thu May 12 18:38:10 2011 @@ -76,7 +76,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-cli/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-cli/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-cli/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-cli/pom.xml Thu May 12 18:38:10 2011 @@ -81,7 +81,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-hawtdb/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-hawtdb/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-hawtdb/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-hawtdb/pom.xml Thu May 12 18:38:10 2011 @@ -91,7 +91,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-jdbm2/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-jdbm2/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-jdbm2/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-jdbm2/pom.xml Thu May 12 18:38:10 2011 @@ -85,7 +85,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-openwire/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-openwire/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-openwire/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-openwire/pom.xml Thu May 12 18:38:10 2011 @@ -112,7 +112,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-scala/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-scala/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-scala/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-scala/pom.xml Thu May 12 18:38:10 2011 @@ -100,7 +100,7 @@ org.fusesource.jvmassert jvmassert - 1.0 + 1.1-SNAPSHOT @@ -159,7 +159,7 @@ org.fusesource.jvmassert jvmassert - 1.0 + 1.1-SNAPSHOT Modified: activemq/activemq-apollo/trunk/apollo-stomp/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-stomp/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-stomp/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-stomp/pom.xml Thu May 12 18:38:10 2011 @@ -117,7 +117,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-util/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-util/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-util/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-util/pom.xml Thu May 12 18:38:10 2011 @@ -133,7 +133,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-web/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-web/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-web/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-web/pom.xml Thu May 12 18:38:10 2011 @@ -135,7 +135,7 @@ org.scalatest - scalatest + ${scalatest-artifact} ${scalatest-version} test Modified: activemq/activemq-apollo/trunk/apollo-website/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-website/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/apollo-website/pom.xml (original) +++ activemq/activemq-apollo/trunk/apollo-website/pom.xml Thu May 12 18:38:10 2011 @@ -117,7 +117,7 @@ ${scalate-version} - ${basedir}/src + ${basedir}/src apollo-website ${website-base-url}/versions/${project.version}/website/ Modified: activemq/activemq-apollo/trunk/pom.xml URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/pom.xml?rev=1102412&r1=1102411&r2=1102412&view=diff ============================================================================== --- activemq/activemq-apollo/trunk/pom.xml (original) +++ activemq/activemq-apollo/trunk/pom.xml Thu May 12 18:38:10 2011 @@ -40,8 +40,9 @@ Apache Apollo - 2.8.1 - 1.2 + 2.9.0 + scalatest_2.9.0 + 1.4.1 5.4.1 1.1.0 @@ -103,7 +104,7 @@ 4.1.6 1.6 - 1.4.0 + 1.5.0-SNAPSHOT 1.5 2.5