include old codecs to be able to read central index Signed-off-by: olivier lamy <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/maven-indexer/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-indexer/commit/8f5417f3 Tree: http://git-wip-us.apache.org/repos/asf/maven-indexer/tree/8f5417f3 Diff: http://git-wip-us.apache.org/repos/asf/maven-indexer/diff/8f5417f3 Branch: refs/heads/master Commit: 8f5417f3f025fad94a83097f0310fc81081e477f Parents: 7f09350 Author: olivier lamy <[email protected]> Authored: Thu Jul 13 22:51:54 2017 +1000 Committer: olivier lamy <[email protected]> Committed: Thu Jul 13 22:51:54 2017 +1000 ---------------------------------------------------------------------- indexer-core/pom.xml | 5 +++++ pom.xml | 7 +++++++ 2 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-indexer/blob/8f5417f3/indexer-core/pom.xml ---------------------------------------------------------------------- diff --git a/indexer-core/pom.xml b/indexer-core/pom.xml index d14f44b..62c9492 100644 --- a/indexer-core/pom.xml +++ b/indexer-core/pom.xml @@ -98,6 +98,11 @@ under the License. <dependency> <groupId>org.apache.lucene</groupId> + <artifactId>lucene-backward-codecs</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.lucene</groupId> <artifactId>lucene-highlighter</artifactId> </dependency> http://git-wip-us.apache.org/repos/asf/maven-indexer/blob/8f5417f3/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 17b6fa6..50dc6ce 100644 --- a/pom.xml +++ b/pom.xml @@ -224,6 +224,13 @@ under the License. <version>${lucene.version}</version> </dependency> + <!-- including old codecs to read central index --> + <dependency> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-backward-codecs</artifactId> + <version>${lucene.version}</version> + </dependency> + <!-- Aether --> <dependency> <groupId>org.eclipse.aether</groupId>
