~ubuntu-branches/ubuntu/saucy/ivy/saucy-proposed

« back to all changes in this revision

Viewing changes to src/example/dual/project/build.xml

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-15 17:44:57 UTC
  • mfrom: (3.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130515174457-ogntd0vxluwalq11
Tags: 2.3.0-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
         ================================= -->
56
56
    <target name="run" depends="resolve" description="--> compile and run the project">
57
57
        <mkdir dir="${build.dir}" />
58
 
        <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" />
 
58
        <javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="lib.path.id" includeAntRuntime="false"/>
59
59
        <java classpathref="run.path.id" classname="example.Hello"/>
60
60
    </target>
61
61