You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2021/10/16 16:06:11 UTC

[jspwiki] 04/08: Update Lucene to 8.10.0 (closes #143) + include lucene-backward-codecs (JSPWIKI-1149)

This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git

commit 36431c92b3d36b50999c364738f764a10cda4957
Author: Juan Pablo Santos Rodríguez <ju...@gmail.com>
AuthorDate: Thu Oct 14 17:17:53 2021 +0200

    Update Lucene to 8.10.0 (closes #143) + include lucene-backward-codecs (JSPWIKI-1149)
---
 jspwiki-main/pom.xml |  9 +++++++--
 pom.xml              | 12 +++++++++---
 2 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/jspwiki-main/pom.xml b/jspwiki-main/pom.xml
index 1d94a4d..911db1d 100644
--- a/jspwiki-main/pom.xml
+++ b/jspwiki-main/pom.xml
@@ -60,7 +60,12 @@
 
     <dependency>
       <groupId>org.apache.lucene</groupId>
-      <artifactId>lucene-queryparser</artifactId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
     </dependency>
 
     <dependency>
@@ -70,7 +75,7 @@
 
     <dependency>
       <groupId>org.apache.lucene</groupId>
-      <artifactId>lucene-analyzers-common</artifactId>
+      <artifactId>lucene-queryparser</artifactId>
     </dependency>
 
     <dependency>
diff --git a/pom.xml b/pom.xml
index 2549419..fd46787 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,7 +69,7 @@
     <junit.version>5.8.1</junit.version>
     <log4j.version>1.2.17</log4j.version>
     <log4j2.version>2.14.1</log4j2.version>
-    <lucene.version>8.9.0</lucene.version>
+    <lucene.version>8.10.0</lucene.version>
     <mockito.version>3.12.4</mockito.version>
     <nekohtml.version>1.9.22</nekohtml.version>
     <oro.version>2.0.8</oro.version>
@@ -282,7 +282,13 @@
 
       <dependency>
         <groupId>org.apache.lucene</groupId>
-        <artifactId>lucene-queryparser</artifactId>
+        <artifactId>lucene-analyzers-common</artifactId>
+        <version>${lucene.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.lucene</groupId>
+        <artifactId>lucene-backward-codecs</artifactId>
         <version>${lucene.version}</version>
       </dependency>
 
@@ -294,7 +300,7 @@
 
       <dependency>
         <groupId>org.apache.lucene</groupId>
-        <artifactId>lucene-analyzers-common</artifactId>
+        <artifactId>lucene-queryparser</artifactId>
         <version>${lucene.version}</version>
       </dependency>