Show build.xml syntax highlighted
<?xml version="1.0"?>
<project default="build" basedir="../../../../../..">
<!-- Set Properties -->
<!-- User settings -->
<property file="${user.home}/ant.properties"/>
<!-- Set property lib dir -->
<property name="properties.dir" value="tools/ant/properties"/>
<!-- Significant dirs -->
<property file="${properties.dir}/dirs.properties"/>
<!-- Compiler settings -->
<property file="${properties.dir}/defaultcompiler.properties"/>
<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="build" depends="compile"/>
<target name="compile">
<copy file="${derby.build.src.dir}/org/apache/derbyBuild/odbcgen_fragments.properties" tofile="${out.dir}/org/apache/derbyBuild/odbcgen_fragments.properties"/>
<javac
bootclasspath="${empty}"
nowarn="on"
debug="${debug}"
depend="${depend}"
deprecation="${deprecation}"
optimize="${optimize}"
proceed="${proceed}"
verbose="${verbose}"
srcdir="${derby.build.src.dir}"
destdir="${out.dir}">
<classpath>
<pathelement path="${compile.classpath};${java.home}/../lib/tools.jar"/>
</classpath>
<include name="org/apache/derbyBuild/**"/>
</javac>
</target>
</project>
See more files for this project here