Return-Path: Delivered-To: apmail-buildr-commits-archive@www.apache.org Received: (qmail 32432 invoked from network); 14 Mar 2010 15:44:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Mar 2010 15:44:40 -0000 Received: (qmail 27421 invoked by uid 500); 14 Mar 2010 15:43:56 -0000 Delivered-To: apmail-buildr-commits-archive@buildr.apache.org Received: (qmail 27397 invoked by uid 500); 14 Mar 2010 15:43:56 -0000 Mailing-List: contact commits-help@buildr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@buildr.apache.org Delivered-To: mailing list commits@buildr.apache.org Received: (qmail 27390 invoked by uid 99); 14 Mar 2010 15:43:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Mar 2010 15:43:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Sun, 14 Mar 2010 15:43:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 90B97238899B; Sun, 14 Mar 2010 15:43:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r922879 - in /buildr/trunk: CHANGELOG lib/buildr/groovy/compiler.rb Date: Sun, 14 Mar 2010 15:43:33 -0000 To: commits@buildr.apache.org From: boisvert@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100314154333.90B97238899B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: boisvert Date: Sun Mar 14 15:43:33 2010 New Revision: 922879 URL: http://svn.apache.org/viewvc?rev=922879&view=rev Log: Upgrade to Groovy 1.7.1 Modified: buildr/trunk/CHANGELOG buildr/trunk/lib/buildr/groovy/compiler.rb Modified: buildr/trunk/CHANGELOG URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=922879&r1=922878&r2=922879&view=diff ============================================================================== --- buildr/trunk/CHANGELOG (original) +++ buildr/trunk/CHANGELOG Sun Mar 14 15:43:33 2010 @@ -25,6 +25,7 @@ (Kerry Wilson) * Added: BUILDR-390 Buildr::group() should accept :classifier argument * Change: Updated to Ant 1.8.0 +* Change: Updated to Groovy 1.7.1 * Change: Updated to JRuby 1.4.0 * Change: Updated to JtestR 0.5 * Change: Updated to JUnit 4.7 Modified: buildr/trunk/lib/buildr/groovy/compiler.rb URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/groovy/compiler.rb?rev=922879&r1=922878&r2=922879&view=diff ============================================================================== --- buildr/trunk/lib/buildr/groovy/compiler.rb (original) +++ buildr/trunk/lib/buildr/groovy/compiler.rb Sun Mar 14 15:43:33 2010 @@ -53,13 +53,13 @@ module Buildr::Groovy # The groovyc compiler jars are added to classpath at load time, # if you want to customize artifact versions, you must set them on the # - # artifact_ns['Buildr::Compiler::Groovyc'].groovy = '1.5.4' + # artifact_ns['Buildr::Compiler::Groovyc'].groovy = '1.7.1' # # namespace before this file is required. REQUIRES = ArtifactNamespace.for(self) do |ns| - ns.groovy! 'org.codehaus.groovy:groovy:jar:>=1.5.3' - ns.commons_cli! 'commons-cli:commons-cli:jar:>=1.0' - ns.asm! 'asm:asm:jar:>=2.2' + ns.groovy! 'org.codehaus.groovy:groovy:jar:>=1.7.1' + ns.commons_cli! 'commons-cli:commons-cli:jar:>=1.2' + ns.asm! 'asm:asm:jar:>=3.2' ns.antlr! 'antlr:antlr:jar:>=2.7.7' end