mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 18:49:03 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@384336 13f79535-47bb-0310-9956-ffa450edef68
26 lines
622 B
XML
26 lines
622 B
XML
<?xml version="1.0"?>
|
|
<project name="ant" default="default">
|
|
|
|
<description>
|
|
Lucene Ant integration
|
|
</description>
|
|
|
|
<path id="additional.dependencies">
|
|
<!-- TODO: make ${tidy.jar} property -->
|
|
<pathelement location="lib/Tidy.jar"/>
|
|
</path>
|
|
|
|
<pathconvert property="project.classpath"
|
|
targetos="unix"
|
|
refid="additional.dependencies"
|
|
/>
|
|
|
|
<target name="compile-core" depends="common.compile-core">
|
|
<copy todir="${build.dir}/classes/java">
|
|
<fileset dir="src/java" includes="**/*.xml"/>
|
|
</copy>
|
|
</target>
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
</project>
|