5a91ae0da4
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352096 13f79535-47bb-0310-9956-ffa450edef68
66 lines
2.3 KiB
Plaintext
66 lines
2.3 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"/>
|
|
|
|
<!-- =================================================================== -->
|
|
<!-- Project names -->
|
|
<!-- =================================================================== -->
|
|
|
|
<property name="fullname" value="JAKARTA POI"/>
|
|
<property name="Name" value="Jakarta Poi"/>
|
|
<property name="name" value="jakarta-poi"/>
|
|
<property name="packages" value="org.apache.poi.*"/>
|
|
|
|
<!-- =================================================================== -->
|
|
<!-- Indentify Classpath -->
|
|
<!-- =================================================================== -->
|
|
<path id="classpath">
|
|
<fileset dir="./lib/core">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
<fileset dir="./lib/optional">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
<path id="scratchpad.classpath">
|
|
<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/${name}/classes"/>
|
|
</path>
|
|
|
|
<path id="contrib.classpath">
|
|
<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/${name}/classes"/>
|
|
</path>
|