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:45:53 UTC

svn commit: r1311142 - in /ant/ivy/core/branches/2.3.x: ./ src/example/hello-ivy/build.xml

Author: maartenc
Date: Mon Apr  9 06:45:52 2012
New Revision: 1311142

URL: http://svn.apache.org/viewvc?rev=1311142&view=rev
Log:
Avoid warning about not setting the includeAntRuntime on compilation (merged from trunk).

Modified:
    ant/ivy/core/branches/2.3.x/   (props changed)
    ant/ivy/core/branches/2.3.x/src/example/hello-ivy/build.xml

Propchange: ant/ivy/core/branches/2.3.x/
------------------------------------------------------------------------------
  Merged /ant/ivy/core/trunk:r1311141

Modified: ant/ivy/core/branches/2.3.x/src/example/hello-ivy/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.3.x/src/example/hello-ivy/build.xml?rev=1311142&r1=1311141&r2=1311142&view=diff
==============================================================================
--- ant/ivy/core/branches/2.3.x/src/example/hello-ivy/build.xml (original)
+++ ant/ivy/core/branches/2.3.x/src/example/hello-ivy/build.xml Mon Apr  9 06:45:52 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"/>