Skip to content

Commit

Permalink
[MINDEXER-208] Apache Lucene 9.9.0 and other minor dependency bumps (#…
Browse files Browse the repository at this point in the history
…337)

Changes:
 - lucene 9.8.0 to 9.9.0 changes: https://lucene.apache.org/core/9_9_0/changes/Changes.html
 - this also switches javac source/target to release
 - didn't touch guice since it 7.0 changes namespace

---

https://issues.apache.org/jira/browse/MINDEXER-208
  • Loading branch information
mbien authored Dec 11, 2023
1 parent 851856d commit 018d117
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion indexer-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ under the License.
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>

<!-- Test -->
Expand Down
2 changes: 1 addition & 1 deletion indexer-examples/indexer-examples-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ under the License.
<description>This module contains Maven Indexer usage examples for integration with Spring.</description>

<properties>
<version.spring>5.3.27</version.spring>
<version.spring>5.3.31</version.spring>
</properties>

<dependencies>
Expand Down
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>40</version>
<version>41</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -94,8 +94,7 @@ under the License.

<properties>
<javaVersion>11</javaVersion>
<maven.compiler.source>${javaVersion}</maven.compiler.source>
<maven.compiler.target>${javaVersion}</maven.compiler.target>
<maven.compiler.release>${javaVersion}</maven.compiler.release>
<minimalMavenBuildVersion>[3.8.7,)</minimalMavenBuildVersion>
<!-- spotless on Java21: move upper once new parent POM used -->
<minimalJavaBuildVersion>[17.0.6,21)</minimalJavaBuildVersion>
Expand All @@ -106,9 +105,9 @@ under the License.

<eclipse-sisu.version>0.9.0.M2</eclipse-sisu.version>
<guice.version>6.0.0</guice.version>
<lucene.version>9.8.0</lucene.version>
<maven.version>3.9.5</maven.version>
<resolver.version>1.9.16</resolver.version>
<lucene.version>9.9.0</lucene.version>
<maven.version>3.9.6</maven.version>
<resolver.version>1.9.18</resolver.version>
<archetype.version>3.2.1</archetype.version>
<surefire.version>3.2.1</surefire.version>
<slf4j.version>2.0.9</slf4j.version>
Expand Down Expand Up @@ -268,7 +267,7 @@ under the License.
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>9.4.51.v20230217</version>
<version>9.4.53.v20231009</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion search-backend-remoterepository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ under the License.
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.16.2</version>
<version>1.17.1</version>
</dependency>

<!-- Test -->
Expand Down

0 comments on commit 018d117

Please sign in to comment.