2002-07-10 21:12:56 -04:00
|
|
|
<?xml version="1.0"?>
|
2005-05-05 20:24:18 -04:00
|
|
|
<project name="ant" default="default">
|
2002-07-10 21:12:56 -04:00
|
|
|
|
|
|
|
<description>
|
|
|
|
Lucene Ant integration
|
|
|
|
</description>
|
|
|
|
|
2004-01-05 02:09:42 -05:00
|
|
|
<path id="additional.dependencies">
|
|
|
|
<!-- TODO: make ${tidy.jar} property -->
|
|
|
|
<pathelement location="lib/Tidy.jar"/>
|
2002-07-10 21:12:56 -04:00
|
|
|
</path>
|
|
|
|
|
2004-01-05 02:09:42 -05:00
|
|
|
<pathconvert property="project.classpath"
|
|
|
|
targetos="unix"
|
|
|
|
refid="additional.dependencies"
|
2002-07-10 21:12:56 -04:00
|
|
|
/>
|
|
|
|
|
2006-03-08 16:32:04 -05:00
|
|
|
<target name="compile-core" depends="common.compile-core">
|
|
|
|
<copy todir="${build.dir}/classes/java">
|
|
|
|
<fileset dir="src/java" includes="**/*.xml"/>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
2005-05-01 20:11:11 -04:00
|
|
|
<import file="../contrib-build.xml"/>
|
2002-07-10 21:12:56 -04:00
|
|
|
</project>
|