Skip to content
Snippets Groups Projects
Commit 513cfdd1 authored by david_williams's avatar david_williams
Browse files

simplify build parameters

parent 343518f0
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<project
name="javadoc"
default="main"
basedir=".">
<property environment="env" />
<!-- = = = standard properties pattern = = = -->
<!--
First get environment variables
Note to be cross-platform, "environment variables" are only appropriate for
some variables, e.g. ones we set, since properties are case sensitive, even if
the environment variables on your operating system are not, e.g. it will
be ${env.Path} not ${env.PATH} on Windows -->
<property environment="env" />
<!--
Let users override standard properties, if desired.
If this directory/files does not exist, then it will be ignored,
and defaults used.
-->
<property
file="${env.LOCAL_BUILD_PROPERTIES_DIR}/${ant.project.name}.properties" />
<!-- if not otherwise set externally, assign some reasonable default, especially
to work on production build machine -->
<property
name="JAVADOC_COMMAND"
value="${env.JAVA_5_HOME}/bin/javadoc" />
<property
name="JAVADOC_ARGS"
value="-J-Xms256m -J-Xmx1024m" />
<property file="javadoc.properties" />
<property
......
<?xml version="1.0" encoding="UTF-8"?>
<project
name="javadoc"
default="main"
basedir=".">
<property environment="env" />
<!-- = = = standard properties pattern = = = -->
<!--
First get environment variables
Note to be cross-platform, "environment variables" are only appropriate for
some variables, e.g. ones we set, since properties are case sensitive, even if
the environment variables on your operating system are not, e.g. it will
be ${env.Path} not ${env.PATH} on Windows -->
<property environment="env" />
<!--
Let users override standard properties, if desired.
If this directory/files does not exist, then it will be ignored,
and defaults used.
-->
<property
file="${env.LOCAL_BUILD_PROPERTIES_DIR}/${ant.project.name}.properties" />
<!-- if not otherwise set externally, assign some reasonable default, especially
to work on production build machine -->
<property
name="JAVADOC_COMMAND"
value="${env.JAVA_5_HOME}/bin/javadoc" />
<property
name="JAVADOC_ARGS"
value="-J-Xms256m -J-Xmx1024m" />
<property file="javadoc.properties" />
<property
name="outputDir"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment