File: dtddocbuild.xml

package info (click to toggle)
lucene-solr 3.6.2%2Bdfsg-24
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 91,200 kB
  • sloc: java: 465,555; xml: 24,939; javascript: 5,291; ruby: 3,453; jsp: 2,637; python: 1,619; sh: 1,556; perl: 1,407; cpp: 305; makefile: 39
file content (36 lines) | stat: -rw-r--r-- 812 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?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>