You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2012/04/09 08:41:20 UTC

svn commit: r1311141 - /ant/ivy/core/trunk/src/example/hello-ivy/build.xml

Author: maartenc
Date: Mon Apr  9 06:41:20 2012
New Revision: 1311141

URL: http://svn.apache.org/viewvc?rev=1311141&view=rev
Log:
Avoid warning about not setting the includeAntRuntime on compilation.

Modified:
    ant/ivy/core/trunk/src/example/hello-ivy/build.xml

Modified: ant/ivy/core/trunk/src/example/hello-ivy/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/example/hello-ivy/build.xml?rev=1311141&r1=1311140&r2=1311141&view=diff
==============================================================================
--- ant/ivy/core/trunk/src/example/hello-ivy/build.xml (original)
+++ ant/ivy/core/trunk/src/example/hello-ivy/build.xml Mon Apr  9 06:41:20 2012
@@ -50,7 +50,7 @@
          ================================= -->
     <target name="run" depends="resolve" description="--> compile and run the project">
         <mkdir dir="${build.dir}" />
-        <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" />
+        <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" includeAntRuntime="false"/>
     	<property name="msg" value="hello ivy !"/>
         <java classpathref="run.path.id" classname="example.Hello">
         	<arg value="-message"/>