aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorohair <none@none>2010-06-17 10:50:14 -0700
committerohair <none@none>2010-06-17 10:50:14 -0700
commit0c6708eabf33f8eafba2bc4d98f8d687e55d60bd (patch)
treedabba7b8d5daf28cf39d2db88acd8d1406556941 /build.xml
parent3dee30e4e18b9693416dd0714feebdf0bae72867 (diff)
downloadjdk8u_jaxp-0c6708eabf33f8eafba2bc4d98f8d687e55d60bd.tar.gz
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
6960333: Add make level ALLOW_DOWNLOADS=true option 6940241: Change jaxp/jaxws so that the http downloads are not done by default Reviewed-by: darcy
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml19
1 files changed, 14 insertions, 5 deletions
diff --git a/build.xml b/build.xml
index e318021..c6de86f 100644
--- a/build.xml
+++ b/build.xml
@@ -36,6 +36,11 @@
javac.debug - true or false for debug classfiles
javac.target - classfile version target
javac.source - source version
+ drops.dir - directory that holds source drop bundles
+ allow.download - permit downloads from public url (default is false)
+ (used if bundles not found in drops.dir)
+
+ Run 'make help' for help using the Makefile.
</description>
<!-- Mac is special, need to downgrade these before build.properties. -->
@@ -106,16 +111,20 @@
<jar file="${dist.classes.jar}" basedir="${build.classes.dir}"/>
</target>
- <target name="-build-prep"
- depends="init, -init-src-dirs, -drop-build-prep">
+ <target name="-build-setup"
+ depends="init, -init-src-dirs, -drop-build-setup">
</target>
<!-- Build (compilation) of sources to class files. -->
<target name="build"
- depends="init, -init-src-dirs, -build-prep">
+ depends="compile, -build-setup">
+ </target>
+ <target name="compile"
+ depends="init, -init-src-dirs">
+ <mkdir dir="${build.classes.dir}"/>
<javac
- includeAntRuntime="false"
- classpath="${build.classes.dir}"
+ includeAntRuntime="false"
+ classpath="${build.classes.dir}:${tools.jar}"
fork="true"
destdir="${build.classes.dir}"
memoryInitialSize="${javac.memoryInitialSize}"