Author: dbrosius
Date: Thu Sep 29 18:13:06 2011
New Revision: 1177384

URL: http://svn.apache.org/viewvc?rev=1177384&view=rev
Log:
add ignoreantruntime flag to quell build warnings

Modified:
    commons/proper/collections/trunk/build.xml

Modified: commons/proper/collections/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/build.xml?rev=1177384&r1=1177383&r2=1177384&view=diff
==============================================================================
--- commons/proper/collections/trunk/build.xml (original)
+++ commons/proper/collections/trunk/build.xml Thu Sep 29 18:13:06 2011
@@ -151,7 +151,8 @@ limitations under the License.
            destdir="${build.classes}"
              debug="${compile.debug}"
        deprecation="${compile.deprecation}"
-          optimize="${compile.optimize}">
+          optimize="${compile.optimize}"
+ includeantruntime="false">
     </javac>
   </target>
 
@@ -294,7 +295,8 @@ limitations under the License.
            destdir="${build.tests}"
              debug="true"
        deprecation="false"
-          optimize="false">
+          optimize="false"
+ includeantruntime="false">
       <classpath>
         <pathelement location="${build.classes}"/>
         <path refid="test.support.path"/>
@@ -476,7 +478,8 @@ limitations under the License.
             destdir="${tf.build.tf}"
             debug="true"
             deprecation="false"
-            optimize="false">
+            optimize="false"
+            includeantruntime="false">
       <patternset refid="tf.patternset.validate" />
       <classpath>
         <path refid="test.support.path"/>


Reply via email to