22657b8b62
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352263 13f79535-47bb-0310-9956-ffa450edef68
89 lines
2.7 KiB
Plaintext
89 lines
2.7 KiB
Plaintext
<!--
|
|
Give user a chance to override without editing this file
|
|
(and without typing -D each time he compiles it)
|
|
-->
|
|
<property file=".ant.properties"/>
|
|
<property file="${user.home}/.ant.properties"/>
|
|
|
|
<!--
|
|
these are here only for those who use jikes compiler. For other
|
|
developers this part makes no difference.
|
|
-->
|
|
<property name="build.compiler.emacs" value="on"/>
|
|
<property name="build.compiler.warnings" value="true"/>
|
|
<property name="build.compiler.pedantic" value="false"/>
|
|
<property name="build.compiler.depend" value="true"/>
|
|
<property name="build.compiler.fulldepend" value="true"/>
|
|
|
|
<!-- Temporary fix. Longer term solution to be discussed. -->
|
|
<property name="build.root" value="./build"/>
|
|
|
|
|
|
<!-- =================================================================== -->
|
|
<!-- Indentify Classpath -->
|
|
<!-- =================================================================== -->
|
|
<path id="centipede.classpath">
|
|
<fileset dir="./lib/endorsed">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./tools/centipede/lib">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
<path id="classpath">
|
|
<fileset dir="./lib/endorsed">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/core">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/optional">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
<path id="examples.classpath">
|
|
<fileset dir="./lib/endorsed">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<!-- FIXME : how to build a path that references a property set in 'init' target ? -->
|
|
<pathelement path="${build.root}/jakarta-poi/classes"/>
|
|
</path>
|
|
|
|
<path id="scratchpad.classpath">
|
|
<fileset dir="./lib/endorsed">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/core">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/optional">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./src/scratchpad/lib">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<!-- FIXME : how to build a path that references a property set in 'init' target ? -->
|
|
<pathelement path="${build.root}/jakarta-poi/classes"/>
|
|
</path>
|
|
|
|
<path id="contrib.classpath">
|
|
<fileset dir="./lib/endorsed">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/core">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/optional">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./src/contrib/lib">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<!-- FIXME : how to build a path that references a property set in 'init' target ? -->
|
|
<pathelement path="${build.root}/jakarta-poi/classes"/>
|
|
</path>
|
|
|
|
|