This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-indexer.git
The following commit(s) were added to refs/heads/master by this push: new 4f017ae [MINDEXER-210][MINDEXER-211] Guava 32.1.3-jre and cleanup (#346) 4f017ae is described below commit 4f017aeaa78d612853dd6f93a67d4b14497c113e Author: Tamas Cservenak <ta...@cservenak.net> AuthorDate: Wed Dec 13 16:09:06 2023 +0100 [MINDEXER-210][MINDEXER-211] Guava 32.1.3-jre and cleanup (#346) Changes: * update Guava to 32.1.3-jre * get rid of Java21+ warning (Sisu APT) * hamcrest-core 1.3 still lurking somewhere, just up it * fix scope of Sisu in a module --- https://issues.apache.org/jira/browse/MINDEXER-210 https://issues.apache.org/jira/browse/MINDEXER-211 --- pom.xml | 14 ++++++++++++++ search-backend-indexer/pom.xml | 1 + 2 files changed, 15 insertions(+) diff --git a/pom.xml b/pom.xml index 210e4cc..0af3e01 100644 --- a/pom.xml +++ b/pom.xml @@ -151,6 +151,12 @@ under the License. <version>1</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>32.1.3-jre</version> + </dependency> + <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> @@ -235,6 +241,13 @@ under the License. <scope>test</scope> </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + <version>2.2</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> @@ -297,6 +310,7 @@ under the License. <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>${javaVersion}</release> + <proc>none</proc> </configuration> </plugin> <plugin> diff --git a/search-backend-indexer/pom.xml b/search-backend-indexer/pom.xml index e7233ba..f4ae5ae 100644 --- a/search-backend-indexer/pom.xml +++ b/search-backend-indexer/pom.xml @@ -68,6 +68,7 @@ under the License. <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId>