mirror of https://github.com/apache/lucene.git
LUCENE-3965: consolidate all api modules and fix packaging for 4.0
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1327094 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0daa4b0aac
commit
e8e4245d9b
|
@ -2,7 +2,6 @@ Apache Lucene/Solr
|
|||
|
||||
lucene/ is a search engine library
|
||||
solr/ is a search engine server that uses lucene
|
||||
modules/ is shared code
|
||||
|
||||
To compile the sources run 'ant compile'
|
||||
To run all the tests run 'ant test'
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
<sequential>
|
||||
<subant target="test" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
</sequential>
|
||||
|
@ -38,7 +37,6 @@
|
|||
<sequential>
|
||||
<subant target="javadocs" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
</sequential>
|
||||
|
@ -47,7 +45,6 @@
|
|||
<target name="validate" description="Validate dependencies, licenses, etc.">
|
||||
<sequential><subant target="validate" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant></sequential>
|
||||
</target>
|
||||
|
@ -55,7 +52,6 @@
|
|||
<target name="rat-sources" description="Runs rat across all sources and tests">
|
||||
<sequential><subant target="rat-sources" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant></sequential>
|
||||
</target>
|
||||
|
@ -63,7 +59,6 @@
|
|||
<target name="resolve" description="Resolves all dependencies">
|
||||
<sequential><subant target="resolve" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant></sequential>
|
||||
</target>
|
||||
|
@ -73,7 +68,6 @@
|
|||
|
||||
<subant target="compile" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
</sequential>
|
||||
|
@ -102,7 +96,6 @@
|
|||
<property name="maven.dist.dir" location="${maven.dist.dir}" />
|
||||
<property name="filtered.pom.templates.uptodate" value="true"/>
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
</sequential>
|
||||
|
@ -137,7 +130,6 @@
|
|||
<fileset dir="." includes="*.iml,*.ipr,*.iws"/>
|
||||
<fileset dir="solr" includes="**/*.iml"/>
|
||||
<fileset dir="lucene" includes="**/*.iml"/>
|
||||
<fileset dir="modules" includes="**/*.iml"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
||||
|
@ -146,7 +138,6 @@
|
|||
<sequential>
|
||||
<subant target="clean" inheritall="false" failonerror="true">
|
||||
<fileset dir="lucene" includes="build.xml" />
|
||||
<fileset dir="modules" includes="build.xml" />
|
||||
<fileset dir="solr" includes="build.xml" />
|
||||
</subant>
|
||||
<delete dir="dist" failonerror="false" />
|
||||
|
|
|
@ -3,61 +3,61 @@
|
|||
<classpathentry kind="src" path="lucene/core/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/core/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/core/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/demo/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/demo/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/demo/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/highlighter/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/highlighter/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/memory/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/memory/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/misc/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/misc/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/sandbox/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/contrib/sandbox/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/demo/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/demo/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/demo/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/highlighter/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/highlighter/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/memory/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/memory/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/misc/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/misc/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/sandbox/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/sandbox/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/test-framework/src/java"/>
|
||||
<classpathentry kind="src" output="bin.tests-framework" path="lucene/test-framework/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/common/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/common/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/common/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/icu/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/icu/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/icu/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/kuromoji/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/kuromoji/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/kuromoji/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/phonetic/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/phonetic/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/smartcn/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/smartcn/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/smartcn/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/stempel/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/stempel/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/analysis/stempel/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/morfologik/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/morfologik/src/test"/>
|
||||
<classpathentry kind="src" path="modules/analysis/uima/src/java"/>
|
||||
<classpathentry kind="src" path="modules/analysis/uima/src/test"/>
|
||||
<classpathentry kind="src" path="modules/benchmark/src/java"/>
|
||||
<classpathentry kind="src" path="modules/benchmark/src/test"/>
|
||||
<classpathentry excluding="src" including="conf/**" kind="src" path="modules/benchmark"/>
|
||||
<classpathentry kind="src" path="modules/facet/src/java"/>
|
||||
<classpathentry kind="src" path="modules/facet/src/examples"/>
|
||||
<classpathentry kind="src" path="modules/facet/src/test"/>
|
||||
<classpathentry kind="src" path="modules/grouping/src/java"/>
|
||||
<classpathentry kind="src" path="modules/grouping/src/test"/>
|
||||
<classpathentry kind="src" path="modules/join/src/java"/>
|
||||
<classpathentry kind="src" path="modules/join/src/test"/>
|
||||
<classpathentry kind="src" path="modules/queries/src/java"/>
|
||||
<classpathentry kind="src" path="modules/queries/src/test"/>
|
||||
<classpathentry kind="src" path="modules/queryparser/src/java"/>
|
||||
<classpathentry kind="src" path="modules/queryparser/src/resources"/>
|
||||
<classpathentry kind="src" path="modules/queryparser/src/test"/>
|
||||
<classpathentry kind="src" path="modules/suggest/src/java"/>
|
||||
<classpathentry kind="src" path="modules/suggest/src/test"/>
|
||||
<classpathentry kind="src" path="modules/spatial/src/java"/>
|
||||
<classpathentry kind="src" path="modules/spatial/src/test"/>
|
||||
<classpathentry kind="src" path="modules/spatial/src/test-files"/>
|
||||
<classpathentry kind="lib" path="modules/spatial/lib/spatial4j-0.2.jar"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/common/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/common/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/common/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/icu/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/icu/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/icu/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/kuromoji/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/kuromoji/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/kuromoji/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/phonetic/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/phonetic/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/smartcn/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/smartcn/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/smartcn/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/stempel/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/stempel/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/stempel/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/morfologik/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/morfologik/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/uima/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/analysis/uima/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/benchmark/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/benchmark/src/test"/>
|
||||
<classpathentry excluding="src" including="conf/**" kind="src" path="lucene/benchmark"/>
|
||||
<classpathentry kind="src" path="lucene/facet/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/facet/src/examples"/>
|
||||
<classpathentry kind="src" path="lucene/facet/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/grouping/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/grouping/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/join/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/join/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/queries/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/queries/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/queryparser/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/queryparser/src/resources"/>
|
||||
<classpathentry kind="src" path="lucene/queryparser/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/suggest/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/suggest/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/spatial/src/java"/>
|
||||
<classpathentry kind="src" path="lucene/spatial/src/test"/>
|
||||
<classpathentry kind="src" path="lucene/spatial/src/test-files"/>
|
||||
<classpathentry kind="lib" path="lucene/spatial/lib/spatial4j-0.2.jar"/>
|
||||
<classpathentry kind="src" path="solr/core/src/java"/>
|
||||
<classpathentry kind="src" path="solr/core/src/test"/>
|
||||
<classpathentry kind="src" path="solr/core/src/test-files"/>
|
||||
|
@ -94,14 +94,14 @@
|
|||
<classpathentry kind="lib" path="lucene/test-framework/lib/ant-1.7.1.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/test-framework/lib/ant-junit-1.7.1.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/test-framework/lib/junit-4.10.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/contrib/sandbox/lib/jakarta-regexp-1.4.jar"/>
|
||||
<classpathentry kind="lib" path="modules/analysis/icu/lib/icu4j-4.8.1.1.jar"/>
|
||||
<classpathentry kind="lib" path="modules/analysis/phonetic/lib/commons-codec-1.6.jar"/>
|
||||
<classpathentry kind="lib" path="modules/analysis/morfologik/lib/morfologik-fsa-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="modules/analysis/morfologik/lib/morfologik-polish-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="modules/analysis/morfologik/lib/morfologik-stemming-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="modules/benchmark/lib/commons-compress-1.2.jar"/>
|
||||
<classpathentry kind="lib" path="modules/benchmark/lib/xercesImpl-2.9.1.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/sandbox/lib/jakarta-regexp-1.4.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/analysis/icu/lib/icu4j-4.8.1.1.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/analysis/phonetic/lib/commons-codec-1.6.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/analysis/morfologik/lib/morfologik-fsa-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/analysis/morfologik/lib/morfologik-polish-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/analysis/morfologik/lib/morfologik-stemming-1.5.2.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/benchmark/lib/commons-compress-1.2.jar"/>
|
||||
<classpathentry kind="lib" path="lucene/benchmark/lib/xercesImpl-2.9.1.jar"/>
|
||||
<classpathentry kind="lib" path="solr/lib/commons-fileupload-1.2.1.jar"/>
|
||||
<classpathentry kind="lib" path="solr/lib/httpclient-4.1.3.jar"/>
|
||||
<classpathentry kind="lib" path="solr/lib/httpcore-4.1.4.jar"/>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-common</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Common Analyzers</name>
|
||||
<description>Additional Analyzers</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/common</module-directory>
|
||||
<build-directory>../build/common</build-directory>
|
||||
<module-directory>lucene/analysis/common</module-directory>
|
||||
<build-directory>../../build/analysis/common</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-icu</artifactId>
|
||||
|
@ -35,8 +35,8 @@
|
|||
stronger Unicode and internationalization support.
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/icu</module-directory>
|
||||
<build-directory>../build/icu</build-directory>
|
||||
<module-directory>lucene/analysis/icu</module-directory>
|
||||
<build-directory>../../build/analysis/icu</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-kuromoji</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
Lucene Kuromoji Japanese Morphological Analyzer
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/kuromoji</module-directory>
|
||||
<build-directory>../build/kuromoji</build-directory>
|
||||
<module-directory>lucene/analysis/kuromoji</module-directory>
|
||||
<build-directory>../../build/analysis/kuromoji</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-morfologik</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
A dictionary-driven lemmatizer for Polish (includes morphosyntactic annotations)
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/morfologik</module-directory>
|
||||
<build-directory>../build/morfologik</build-directory>
|
||||
<module-directory>lucene/analysis/morfologik</module-directory>
|
||||
<build-directory>../../build/analysis/morfologik</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-phonetic</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
Provides phonetic encoding via Commons Codec.
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/phonetic</module-directory>
|
||||
<build-directory>../build/phonetic</build-directory>
|
||||
<module-directory>lucene/analysis/phonetic</module-directory>
|
||||
<build-directory>../../build/analysis/phonetic</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analysis-modules-aggregator</artifactId>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-smartcn</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Smart Chinese Analyzer</name>
|
||||
<description>Smart Chinese Analyzer</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/smartcn</module-directory>
|
||||
<build-directory>../build/smartcn</build-directory>
|
||||
<module-directory>lucene/analysis/smartcn</module-directory>
|
||||
<build-directory>../../build/analysis/smartcn</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-stempel</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Stempel Analyzer</name>
|
||||
<description>Stempel Analyzer</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/stempel</module-directory>
|
||||
<build-directory>../build/stempel</build-directory>
|
||||
<module-directory>lucene/analysis/stempel</module-directory>
|
||||
<build-directory>../../build/analysis/stempel</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-analyzers-uima</artifactId>
|
||||
|
@ -36,8 +36,8 @@
|
|||
(language, sentences, concepts, named entities, etc.)
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/analysis/uima</module-directory>
|
||||
<build-directory>../build/uima</build-directory>
|
||||
<module-directory>lucene/analysis/uima</module-directory>
|
||||
<build-directory>../../build/analysis/uima</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-benchmark</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Benchmark</name>
|
||||
<description>Lucene Benchmarking Module</description>
|
||||
<properties>
|
||||
<module-directory>modules/benchmark</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/benchmark</module-directory>
|
||||
<build-directory>../build/benchmark</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -1,52 +0,0 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-contrib-aggregator</artifactId>
|
||||
<name>Lucene Contrib aggregator POM</name>
|
||||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>demo</module>
|
||||
<module>highlighter</module>
|
||||
<module>memory</module>
|
||||
<module>misc</module>
|
||||
<module>sandbox</module>
|
||||
</modules>
|
||||
<build>
|
||||
<directory>build/lucene-contrib-aggregator</directory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-demo</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Demo</name>
|
||||
<description>This is the demo for Apache Lucene Java</description>
|
||||
<properties>
|
||||
<module-directory>lucene/contrib/demo</module-directory>
|
||||
<build-directory>../../build/contrib/demo</build-directory>
|
||||
<module-directory>lucene/demo</module-directory>
|
||||
<build-directory>../build/demo</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-facet</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
Package for Faceted Indexing and Search
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/facet</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/facet</module-directory>
|
||||
<build-directory>../build/facet</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-grouping</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Grouping</name>
|
||||
<description>Lucene Grouping Module</description>
|
||||
<properties>
|
||||
<module-directory>modules/grouping</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/grouping</module-directory>
|
||||
<build-directory>../build/grouping</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-highlighter</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
This is the highlighter for apache lucene java
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>lucene/contrib/highlighter</module-directory>
|
||||
<build-directory>../../build/contrib/highlighter</build-directory>
|
||||
<module-directory>lucene/highlighter</module-directory>
|
||||
<build-directory>../build/highlighter</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-join</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Join</name>
|
||||
<description>Lucene Join Module</description>
|
||||
<properties>
|
||||
<module-directory>modules/join</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/join</module-directory>
|
||||
<build-directory>../build/join</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-memory</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
High-performance single-document index to compare against Query
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>lucene/contrib/memory</module-directory>
|
||||
<build-directory>../../build/contrib/memory</build-directory>
|
||||
<module-directory>lucene/memory</module-directory>
|
||||
<build-directory>../build/memory</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-misc</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Miscellaneous</name>
|
||||
<description>Miscellaneous Lucene extensions</description>
|
||||
<properties>
|
||||
<module-directory>lucene/contrib/misc</module-directory>
|
||||
<build-directory>../../build/contrib/misc</build-directory>
|
||||
<module-directory>lucene/misc</module-directory>
|
||||
<build-directory>../build/misc</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -48,7 +48,20 @@
|
|||
<modules>
|
||||
<module>core</module>
|
||||
<module>test-framework</module>
|
||||
<module>contrib</module>
|
||||
<module>analysis</module>
|
||||
<module>benchmark</module>
|
||||
<module>demo</module>
|
||||
<module>facet</module>
|
||||
<module>grouping</module>
|
||||
<module>highlighter</module>
|
||||
<module>join</module>
|
||||
<module>memory</module>
|
||||
<module>misc</module>
|
||||
<module>queries</module>
|
||||
<module>queryparser</module>
|
||||
<module>sandbox</module>
|
||||
<module>spatial</module>
|
||||
<module>suggest</module>
|
||||
</modules>
|
||||
<build>
|
||||
<directory>build/lucene-parent</directory>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-queries</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Queries</name>
|
||||
<description>Lucene Queries Module</description>
|
||||
<properties>
|
||||
<module-directory>modules/queries</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/queries</module-directory>
|
||||
<build-directory>../build/queries</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-queryparser</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene QueryParsers</name>
|
||||
<description>Lucene QueryParsers module</description>
|
||||
<properties>
|
||||
<module-directory>modules/queryparser</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/queryparser</module-directory>
|
||||
<build-directory>../build/queryparser</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-sandbox</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Sandbox</name>
|
||||
<description>Lucene Sandbox</description>
|
||||
<properties>
|
||||
<module-directory>lucene/contrib/sandbox</module-directory>
|
||||
<build-directory>../../build/contrib/sandbox</build-directory>
|
||||
<module-directory>lucene/sandbox</module-directory>
|
||||
<build-directory>../build/sandbox</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-spatial</artifactId>
|
||||
|
@ -34,8 +34,8 @@
|
|||
Spatial Strategies for Apache Lucene
|
||||
</description>
|
||||
<properties>
|
||||
<module-directory>modules/spatial</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/spatial</module-directory>
|
||||
<build-directory>../build/spatial</build-directory>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
|
@ -24,7 +24,7 @@
|
|||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../../lucene/pom.xml</relativePath>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-suggest</artifactId>
|
||||
|
@ -32,8 +32,8 @@
|
|||
<name>Lucene Suggest</name>
|
||||
<description>Lucene Suggest Module</description>
|
||||
<properties>
|
||||
<module-directory>modules/suggest</module-directory>
|
||||
<build-directory>build</build-directory>
|
||||
<module-directory>lucene/suggest</module-directory>
|
||||
<build-directory>../build/suggest</build-directory>
|
||||
</properties>
|
||||
<scm>
|
||||
<connection>
|
|
@ -1,56 +0,0 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-parent</artifactId>
|
||||
<version>@version@</version>
|
||||
<relativePath>../lucene/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-modules-aggregator</artifactId>
|
||||
<name>Lucene Modules aggregator POM</name>
|
||||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>analysis</module>
|
||||
<module>benchmark</module>
|
||||
<module>facet</module>
|
||||
<module>grouping</module>
|
||||
<module>join</module>
|
||||
<module>queries</module>
|
||||
<module>queryparser</module>
|
||||
<module>spatial</module>
|
||||
<module>suggest</module>
|
||||
</modules>
|
||||
<build>
|
||||
<directory>build/lucene-modules-aggregator</directory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -35,7 +35,6 @@
|
|||
<url>http://lucene.apache.org/java</url>
|
||||
<modules>
|
||||
<module>lucene</module>
|
||||
<module>modules</module>
|
||||
<module>solr</module>
|
||||
</modules>
|
||||
<properties>
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
<project name="analysis-module-build">
|
||||
|
||||
<!-- submodule build for analyzers.
|
||||
ensures that each submodule is built under build/
|
||||
consistent with its source structure so that
|
||||
binary packaging makes sense -->
|
||||
|
||||
<basename property="submodule.project.name" file="${basedir}"/>
|
||||
<dirname file="${ant.file.analysis-module-build}" property="analysis.dir"/>
|
||||
|
||||
<property name="build.dir"
|
||||
location="${analysis.dir}/../build/analysis/${submodule.project.name}"/>
|
||||
|
||||
<import file="../module-build.xml"/>
|
||||
|
||||
</project>
|
|
@ -22,14 +22,11 @@
|
|||
<description>
|
||||
Analyzers
|
||||
</description>
|
||||
|
||||
<property name="build.dir" location="../build/common" />
|
||||
<property name="dist.dir" location="../dist/common" />
|
||||
|
||||
<!-- some files for testing that do not have license headers -->
|
||||
<property name="rat.excludes" value="**/*.aff,**/*.dic,**/*.txt,**/charfilter/*.htm*,**/*LuceneResourcesWikiPage.html"/>
|
||||
|
||||
<import file="../../../lucene/module-build.xml"/>
|
||||
<import file="../analysis-module-build.xml"/>
|
||||
|
||||
<target name="compile-core" depends="jflex-notice, common.compile-core"/>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue