I'm trying to use Ant, and I get this error when I type "ant" into the command line for my compile target:
[javac] C:\development\src\j3\textprocess\build.xml:15: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
Did I not set something up correctly?
Here is my build.xml file as well:
<?xml version="1.0"?>
<project name="TextProcess" default="compile" basedir=".">
<property environment="env"/>
<property name="src" value="${basedir}/src" />
<property name="bin" value="${basedir}/bin" />
<property name="lib" value="${basedir}/lib" />
<property name="doc" value="${basedir}/doc" />
<property name="build" value="${basedir}/build" />
<target name="prepare" description="Setting up temporary directory to support build.">
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="prepare">
<javac srcdir="${src}" destdir="${build}" includes="**/*.java" listfiles="yes">
</javac>
</target>
<target name="deploy" depends="compile">
<jar destfile="${bin}/HelloWorld.jar" basedir="${build}"/>
</target>
<target name="run" depends="deploy">
<java fork="true" classname="TextProcess">
<classpath path="${bin}/TextProcess.jar"/>
</java>
</target>
</project>