add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / xml-query-parser / dtddocbuild.xml
1 <?xml version="1.0"?>
2
3 <project name="DTDDocAnt" default="main">
4
5   <import file="../contrib-build.xml"/>
6
7     <description>
8     This file generates DTDdocumentation
9     </description>
10
11     <!-- Tell ant where to find the code of the DTDDoc task.
12          Set dtddoc.home property to the directory where DTDdoc is installed on your system
13          -->
14
15     <taskdef name="DTDDoc"
16              classname="DTDDoc.DTDDocTask"
17              classpath="${dtddoc.home}/DTDDoc.jar"/>
18
19     <!-- Execute DTDDoc -->
20
21     <target name="main">
22
23
24         <DTDDoc showHiddenTags="false"
25                 showFixmeTags="false"
26                 sourceDir="."
27                 destDir="docs"
28                 docTitle = "Lucene XML Query syntax">
29                 <include name="*.dtd"/>
30         </DTDDoc>
31
32     </target>
33
34
35
36 </project>