add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / analyzers / build.xml
1 <?xml version="1.0"?>
2
3 <!--
4     Licensed to the Apache Software Foundation (ASF) under one or more
5     contributor license agreements.  See the NOTICE file distributed with
6     this work for additional information regarding copyright ownership.
7     The ASF licenses this file to You under the Apache License, Version 2.0
8     the "License"); you may not use this file except in compliance with
9     the License.  You may obtain a copy of the License at
10  
11         http://www.apache.org/licenses/LICENSE-2.0
12  
13     Unless required by applicable law or agreed to in writing, software
14     distributed under the License is distributed on an "AS IS" BASIS,
15     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16     See the License for the specific language governing permissions and
17     limitations under the License.
18  -->
19
20 <project name="analyzers" default="default">
21
22   <description>
23     Additional Analyzers
24       - common: Additional Analyzers
25       - smartcn:        Smart Analyzer for Simplified Chinese Text
26       - stempel:        Algorithmic Stemmer for Polish
27   </description>
28
29   <!-- we dont import contrib-build.xml here, as this file only delegates to the real build files -->
30
31   <target name="common">
32     <ant dir="common" />
33   </target>
34
35   <target name="smartcn">
36     <ant dir="smartcn" />
37   </target>
38
39   <target name="stempel">
40     <ant dir="stempel" />
41   </target>
42
43   <target name="default" depends="common,smartcn,stempel" />
44
45   <target name="clean">
46     <ant dir="common" target="clean" />
47     <ant dir="smartcn" target="clean" />
48     <ant dir="stempel" target="clean" />
49   </target>
50   <target name="compile-core">
51     <ant dir="common" target="compile-core" />
52     <ant dir="smartcn" target="compile-core" />
53     <ant dir="stempel" target="compile-core" />
54   </target>
55   <target name="compile-test">
56     <ant dir="common" target="compile-test" />
57     <ant dir="smartcn" target="compile-test" />
58     <ant dir="stempel" target="compile-test" />
59   </target>
60   <target name="test">
61     <ant dir="common" target="test" />
62     <ant dir="smartcn" target="test" />
63     <ant dir="stempel" target="test" />
64   </target>
65
66   <target name="build-artifacts-and-tests" depends="default,compile-test" />
67
68   <target name="dist-maven" depends="default">
69     <ant dir="common" target="dist-maven" />
70     <ant dir="smartcn" target="dist-maven" />
71     <ant dir="stempel" target="dist-maven" />
72   </target>     
73
74   <target name="javadocs">
75     <ant dir="common" target="javadocs" />
76     <ant dir="smartcn" target="javadocs" />
77     <ant dir="stempel" target="javadocs" />
78   </target>     
79
80   <target name="javadocs-index.html">
81     <ant dir="common" target="javadocs-index.html" />
82     <ant dir="smartcn" target="javadocs-index.html" />
83     <ant dir="stempel" target="javadocs-index.html" />
84   </target>
85         
86 </project>