diff options
author | Bertrand Delacretaz <bdelacretaz@apache.org> | 2002-10-31 17:16:18 +0000 |
---|---|---|
committer | Bertrand Delacretaz <bdelacretaz@apache.org> | 2002-10-31 17:16:18 +0000 |
commit | 2ba5ad6985ece5e49fde3332d383c5c6e2bf8248 (patch) | |
tree | 83f5bac25c62a290f5ee1169a6cfb0fc5da15078 /build.xml | |
parent | 1e2a567b1a53e251eabfd2d8957681fa7ee91625 (diff) | |
download | xmlgraphics-fop-2ba5ad6985ece5e49fde3332d383c5c6e2bf8248.tar.gz xmlgraphics-fop-2ba5ad6985ece5e49fde3332d383c5c6e2bf8248.zip |
build.properties and build-local.properties allow local override of build settings
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195395 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -36,6 +36,11 @@ list of possible build targets. ============================================================================ --> <project default="package" basedir="."> + <!-- used to set values for testing etc. --> + <!-- build-local.properties is not stored in CVS and overrides values from build.properties --> + <property file="build-local.properties"/> + <property file="build.properties"/> + <fileset dir="${basedir}" id="dist.bin"> <include name="conf/**"/> <include name="docs/**"/> @@ -130,6 +135,7 @@ list of possible build targets. <property name="year" value="1999-2002"/> <echo message="------------------- ${Name} ${version} [${year}] ----------------"/> + <echo message="See build.properties and build-local.properties for additional build settings"/> <property name="build.compiler" value="classic"/> <property name="debug" value="on"/> @@ -668,7 +674,7 @@ list of possible build targets. <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop" classpathref="libs-run-classpath"/> <mkdir dir="${build.examples.dir}"/> - <fop format="application/pdf" outdir="${build.examples.dir}" + <fop format="${build.property.examples.mime.type}" outdir="${build.examples.dir}" messagelevel="debug" basedir="${fo.examples.dir}"> <fileset dir="${fo.examples.dir}"> <include name="**/*.fo"/> |