~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to lucene/contrib/xml-query-parser/dtddocbuild.xml

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
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>