You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2010/06/28 23:45:33 UTC

svn commit: r958750 - /buildr/trunk/lib/buildr/java/ant.rb

Author: toulmean
Date: Mon Jun 28 21:45:33 2010
New Revision: 958750

URL: http://svn.apache.org/viewvc?rev=958750&view=rev
Log:
remove trax as it has been removed from 1.8.1, as TrAX is now part of the JDK

Modified:
    buildr/trunk/lib/buildr/java/ant.rb

Modified: buildr/trunk/lib/buildr/java/ant.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/ant.rb?rev=958750&r1=958749&r2=958750&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/ant.rb (original)
+++ buildr/trunk/lib/buildr/java/ant.rb Mon Jun 28 21:45:33 2010
@@ -37,8 +37,7 @@ module Buildr
       def dependencies
         # Ant-Trax required for running the JUnitReport task, and there's no other place
         # to put it but the root classpath.
-        @dependencies ||= ["org.apache.ant:ant:jar:#{version}", "org.apache.ant:ant-launcher:jar:#{version}",
-                           "org.apache.ant:ant-trax:jar:#{version}"]
+        @dependencies ||= ["org.apache.ant:ant:jar:#{version}", "org.apache.ant:ant-launcher:jar:#{version}"]
       end
 
     private