You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2014/05/01 04:03:56 UTC

svn commit: r1591533 - /ant/core/trunk/build.xml

Author: antoine
Date: Thu May  1 02:03:56 2014
New Revision: 1591533

URL: http://svn.apache.org/r1591533
Log:
adding a classpath tag in order to prevent a runtime error caused by a Java bug and the JUnit 4 annotations from happening

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=1591533&r1=1591532&r2=1591533&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Thu May  1 02:03:56 2014
@@ -1460,7 +1460,7 @@
       <group title="Optional Tasks" packages="org.apache.tools.ant.taskdefs.optional*"/>
       <group title="Optional Types" packages="org.apache.tools.ant.types.optional*"/>
       <group title="Ant Utilities" packages="org.apache.tools.ant.util*"/>
-
+      <classpath refid="tests-classpath"/>
     </javadoc>
   </target>
 
@@ -1484,7 +1484,7 @@
       <fileset dir="${src.junit}">
         <patternset refid="useful.tests"/>
       </fileset>
-
+      <classpath refid="tests-classpath"/>
     </javadoc>
   </target>