You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/03/14 16:43:33 UTC

svn commit: r922879 - in /buildr/trunk: CHANGELOG lib/buildr/groovy/compiler.rb

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