You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/05/23 14:00:18 UTC

svn commit: r1126461 - /commons/proper/scxml/trunk/build.xml

Author: sebb
Date: Mon May 23 12:00:17 2011
New Revision: 1126461

URL: http://svn.apache.org/viewvc?rev=1126461&view=rev
Log:
+= includeantruntime="false"

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

Modified: commons/proper/scxml/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/build.xml?rev=1126461&r1=1126460&r2=1126461&view=diff
==============================================================================
--- commons/proper/scxml/trunk/build.xml (original)
+++ commons/proper/scxml/trunk/build.xml Mon May 23 12:00:17 2011
@@ -60,7 +60,7 @@
   <target name="compile" description="o Compile the code" depends="get-deps">
     <mkdir dir="${classesdir}">
     </mkdir>
-    <javac source="${compile.source}" target="${compile.target}" destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
+    <javac includeantruntime="false" source="${compile.source}" target="${compile.target}" destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
       <src>
         <pathelement location="src/main/java">
         </pathelement>
@@ -159,7 +159,7 @@
   <target name="compile-tests" if="Junit.present" depends="junit-present,compile">
     <mkdir dir="${testclassesdir}">
     </mkdir>
-    <javac source="${compile.source}" target="${compile.target}" destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
+    <javac includeantruntime="false" source="${compile.source}" target="${compile.target}" destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
       <src>
         <pathelement location="src/test/java">
         </pathelement>