mirror of https://github.com/apache/lucene.git
37 lines
812 B
XML
37 lines
812 B
XML
|
<?xml version="1.0"?>
|
||
|
|
||
|
<project name="DTDDocAnt" default="main">
|
||
|
|
||
|
<import file="../contrib-build.xml"/>
|
||
|
|
||
|
<description>
|
||
|
This file generates DTDdocumentation
|
||
|
</description>
|
||
|
|
||
|
<!-- Tell ant where to find the code of the DTDDoc task.
|
||
|
Set dtddoc.home property to the directory where DTDdoc is installed on your system
|
||
|
-->
|
||
|
|
||
|
<taskdef name="DTDDoc"
|
||
|
classname="DTDDoc.DTDDocTask"
|
||
|
classpath="${dtddoc.home}/DTDDoc.jar"/>
|
||
|
|
||
|
<!-- Execute DTDDoc -->
|
||
|
|
||
|
<target name="main">
|
||
|
|
||
|
|
||
|
<DTDDoc showHiddenTags="false"
|
||
|
showFixmeTags="false"
|
||
|
sourceDir="."
|
||
|
destDir="docs"
|
||
|
docTitle = "Lucene XML Query syntax">
|
||
|
<include name="*.dtd"/>
|
||
|
</DTDDoc>
|
||
|
|
||
|
</target>
|
||
|
|
||
|
|
||
|
|
||
|
</project>
|