Show build.xml syntax highlighted
<?xml version="1.0"?>
<project default="demo" basedir="../..">
<!-- Set Properties -->
<!-- User settings -->
<property file="${user.home}/ant.properties"/>
<!-- Set property lib dir -->
<property name="properties.dir" value="${ant.home}/properties"/>
<!-- Significant dirs -->
<property file="${properties.dir}/dirs.properties"/>
<!-- Compiler settings -->
<property file="${properties.dir}/${build.compiler}.properties"/>
<!-- Compile-time classpath properties files -->
<property file="${properties.dir}/extrapath.properties"/>
<property file="${properties.dir}/compilepath.properties"/>
<!-- Targets -->
<target name="demo" depends="compile"/>
<target name="compile">
<javac
bootclasspath="${empty}"
nowarn="on"
debug="${debug}"
depend="${depend}"
deprecation="${deprecation}"
optimize="${optimize}"
proceed="${proceed}"
verbose="${verbose}"
srcdir="nserverdemo"
destdir="${out.dir}"
includes="Simple*">
<classpath>
<pathelement path="${java14compile.classpath}"/>
<pathelement location="${jcc}"/>
</classpath>
</javac>
<javac
bootclasspath="${empty}"
nowarn="on"
debug="${debug}"
depend="${depend}"
deprecation="${deprecation}"
optimize="${optimize}"
proceed="${proceed}"
verbose="${verbose}"
srcdir="."
destdir="${out.dir}"
includes="nserverdemo/**"
excludes="nserverdemo/Simple*">
<classpath>
<pathelement path="${java14compile.classpath}"/>
<pathelement location="${jcc}"/>
</classpath>
</javac>
<javac
bootclasspath="${empty}"
nowarn="on"
debug="${debug}"
depend="${depend}"
deprecation="${deprecation}"
optimize="${optimize}"
proceed="${proceed}"
verbose="${verbose}"
srcdir="${derby.demo.src.dir}/simple"
destdir="${out.dir}">
<classpath>
<pathelement location="${javasrc.dir};${jcc};${jta1_2}"/>
<pathelement path="${java13compile.classpath};${jcc};${jta1_2}"/>
</classpath>
</javac>
</target>
</project>
See more files for this project here