2004-01-05 20:03:15 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2007-06-09 02:09:46 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2004-01-05 20:03:15 -05:00
|
|
|
<project name="analyzers" default="default">
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Additional Analyzers
|
2009-07-23 13:11:22 -04:00
|
|
|
- common: Additional Analyzers
|
2010-05-20 06:46:00 -04:00
|
|
|
- icu: Analyzers that use functionality from ICU
|
2009-07-23 13:11:22 -04:00
|
|
|
- smartcn: Smart Analyzer for Simplified Chinese Text
|
2010-05-03 08:44:22 -04:00
|
|
|
- stempel: Algorithmic Stemmer for Polish
|
2004-01-05 20:03:15 -05:00
|
|
|
</description>
|
|
|
|
|
2009-07-23 13:11:22 -04:00
|
|
|
<target name="common">
|
|
|
|
<ant dir="common" />
|
|
|
|
</target>
|
2008-09-11 14:23:18 -04:00
|
|
|
|
2010-05-20 06:46:00 -04:00
|
|
|
<target name="icu">
|
|
|
|
<ant dir="icu" />
|
|
|
|
</target>
|
|
|
|
|
2009-07-23 13:11:22 -04:00
|
|
|
<target name="smartcn">
|
|
|
|
<ant dir="smartcn" />
|
|
|
|
</target>
|
|
|
|
|
2010-05-03 08:44:22 -04:00
|
|
|
<target name="stempel">
|
|
|
|
<ant dir="stempel" />
|
|
|
|
</target>
|
|
|
|
|
2010-05-07 18:51:45 -04:00
|
|
|
<target name="default" depends="compile"/>
|
2010-05-20 06:46:00 -04:00
|
|
|
<target name="compile" depends="common,icu,smartcn,stempel" />
|
2009-07-23 13:11:22 -04:00
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<ant dir="common" target="clean" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="clean" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="clean" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="clean" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
<target name="compile-core">
|
|
|
|
<ant dir="common" target="compile-core" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="compile-core" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="compile-core" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="compile-core" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
<target name="compile-test">
|
|
|
|
<ant dir="common" target="compile-test" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="compile-test" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="compile-test" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="compile-test" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
<target name="test">
|
|
|
|
<ant dir="common" target="test" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="test" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="test" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="test" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build-artifacts-and-tests" depends="default,compile-test" />
|
|
|
|
|
|
|
|
<target name="dist-maven" depends="default">
|
|
|
|
<ant dir="common" target="dist-maven" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="dist-maven" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="dist-maven" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="dist-maven" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="javadocs">
|
|
|
|
<ant dir="common" target="javadocs" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="javadocs" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="javadocs" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="javadocs" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="javadocs-index.html">
|
|
|
|
<ant dir="common" target="javadocs-index.html" />
|
2010-05-20 06:46:00 -04:00
|
|
|
<ant dir="icu" target="javadocs-index.html" />
|
2009-07-23 13:11:22 -04:00
|
|
|
<ant dir="smartcn" target="javadocs-index.html" />
|
2010-05-03 08:44:22 -04:00
|
|
|
<ant dir="stempel" target="javadocs-index.html" />
|
2009-07-23 13:11:22 -04:00
|
|
|
</target>
|
|
|
|
|
2004-01-05 20:03:15 -05:00
|
|
|
</project>
|