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

zstan pushed a commit to branch ignite-2.18
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.18 by this push:
     new 14361a634e1 IGNITE-27707 Update package dependencies before 2.18 
release (#12676)
14361a634e1 is described below

commit 14361a634e173999dc753550051a479dcee664ad
Author: Evgeniy Stanilovskiy <[email protected]>
AuthorDate: Tue Feb 3 14:12:41 2026 +0300

    IGNITE-27707 Update package dependencies before 2.18 release (#12676)
    
    (cherry picked from commit 5a874bd90107e8b621cef45c8292543b447f65e8)
---
 .../misc/GridDhtPartitionsStateValidatorBenchmark.java  |  5 +++--
 modules/compatibility/pom.xml                           |  2 +-
 modules/compress/pom.xml                                |  2 +-
 modules/control-utility/pom.xml                         |  2 +-
 modules/core/pom.xml                                    |  2 +-
 .../dht/GridCachePartitionsStateValidatorSelfTest.java  |  6 ++++--
 modules/direct-io/pom.xml                               |  2 +-
 modules/indexing/pom.xml                                |  2 +-
 modules/numa-allocator/pom.xml                          |  2 +-
 modules/zookeeper/pom.xml                               |  2 +-
 parent/pom.xml                                          | 17 +++++++++--------
 11 files changed, 24 insertions(+), 20 deletions(-)

diff --git 
a/modules/benchmarks/src/main/java/org/apache/ignite/internal/benchmarks/jmh/misc/GridDhtPartitionsStateValidatorBenchmark.java
 
b/modules/benchmarks/src/main/java/org/apache/ignite/internal/benchmarks/jmh/misc/GridDhtPartitionsStateValidatorBenchmark.java
index ce29a8eaeb3..f34430ea036 100644
--- 
a/modules/benchmarks/src/main/java/org/apache/ignite/internal/benchmarks/jmh/misc/GridDhtPartitionsStateValidatorBenchmark.java
+++ 
b/modules/benchmarks/src/main/java/org/apache/ignite/internal/benchmarks/jmh/misc/GridDhtPartitionsStateValidatorBenchmark.java
@@ -34,13 +34,14 @@ import 
org.apache.ignite.internal.processors.cache.distributed.dht.topology.Grid
 import 
org.apache.ignite.internal.processors.cache.distributed.dht.topology.GridDhtPartitionTopology;
 import 
org.apache.ignite.internal.processors.cache.distributed.dht.topology.GridDhtPartitionsStateValidator;
 import org.jetbrains.annotations.Nullable;
-import org.mockito.Matchers;
 import org.mockito.Mockito;
 import org.openjdk.jmh.annotations.Benchmark;
 import org.openjdk.jmh.annotations.Scope;
 import org.openjdk.jmh.annotations.Setup;
 import org.openjdk.jmh.annotations.State;
 
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.ArgumentMatchers.anyInt;
 import static org.openjdk.jmh.annotations.Scope.Thread;
 
 /** */
@@ -110,7 +111,7 @@ public class GridDhtPartitionsStateValidatorBenchmark 
extends JmhAbstractBenchma
             Mockito.when(cctxMock.localNodeId()).thenReturn(localNodeId);
 
             topologyMock = Mockito.mock(GridDhtPartitionTopology.class);
-            Mockito.when(topologyMock.partitionState(Matchers.any(), 
Matchers.anyInt())).thenReturn(GridDhtPartitionState.OWNING);
+            Mockito.when(topologyMock.partitionState(any(), 
anyInt())).thenReturn(GridDhtPartitionState.OWNING);
             Mockito.when(topologyMock.groupId()).thenReturn(0);
 
             Mockito.when(topologyMock.partitions()).thenReturn(PARTS);
diff --git a/modules/compatibility/pom.xml b/modules/compatibility/pom.xml
index 874bd31fb21..daf2c7b8a4c 100644
--- a/modules/compatibility/pom.xml
+++ b/modules/compatibility/pom.xml
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/compress/pom.xml b/modules/compress/pom.xml
index ec23fe754c6..23709aa105c 100644
--- a/modules/compress/pom.xml
+++ b/modules/compress/pom.xml
@@ -107,7 +107,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/control-utility/pom.xml b/modules/control-utility/pom.xml
index 6dd782bf2a2..b0d69b0db68 100644
--- a/modules/control-utility/pom.xml
+++ b/modules/control-utility/pom.xml
@@ -100,7 +100,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 0175c77aeb2..100620dc8cc 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -110,7 +110,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCachePartitionsStateValidatorSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCachePartitionsStateValidatorSelfTest.java
index b1b05fe49c1..2deb5c23b33 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCachePartitionsStateValidatorSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCachePartitionsStateValidatorSelfTest.java
@@ -34,9 +34,11 @@ import 
org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.jetbrains.annotations.Nullable;
 import org.junit.Assert;
 import org.junit.Test;
-import org.mockito.Matchers;
 import org.mockito.Mockito;
 
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.ArgumentMatchers.anyInt;
+
 /**
  * Test correct behaviour of {@link GridDhtPartitionsStateValidator} class.
  */
@@ -57,7 +59,7 @@ public class GridCachePartitionsStateValidatorSelfTest 
extends GridCommonAbstrac
         Mockito.when(cctxMock.localNodeId()).thenReturn(localNodeId);
 
         topologyMock = Mockito.mock(GridDhtPartitionTopology.class);
-        Mockito.when(topologyMock.partitionState(Matchers.any(), 
Matchers.anyInt())).thenReturn(GridDhtPartitionState.OWNING);
+        Mockito.when(topologyMock.partitionState(any(), 
anyInt())).thenReturn(GridDhtPartitionState.OWNING);
         Mockito.when(topologyMock.groupId()).thenReturn(0);
         Mockito.when(topologyMock.partitions()).thenReturn(3);
 
diff --git a/modules/direct-io/pom.xml b/modules/direct-io/pom.xml
index 84b482fbb4c..8ab5ff6886f 100644
--- a/modules/direct-io/pom.xml
+++ b/modules/direct-io/pom.xml
@@ -104,7 +104,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/indexing/pom.xml b/modules/indexing/pom.xml
index e2a801f06e0..d3a1cdd203c 100644
--- a/modules/indexing/pom.xml
+++ b/modules/indexing/pom.xml
@@ -86,7 +86,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/numa-allocator/pom.xml b/modules/numa-allocator/pom.xml
index b9b3f04c321..6e76e8ee1d2 100644
--- a/modules/numa-allocator/pom.xml
+++ b/modules/numa-allocator/pom.xml
@@ -71,7 +71,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/modules/zookeeper/pom.xml b/modules/zookeeper/pom.xml
index 01b3847d53d..4c414a12848 100644
--- a/modules/zookeeper/pom.xml
+++ b/modules/zookeeper/pom.xml
@@ -133,7 +133,7 @@
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
-            <version>1.4.8</version>
+            <version>${xstream.version}</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/parent/pom.xml b/parent/pom.xml
index 5f8aa037b74..265b4330ee5 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -66,13 +66,13 @@
         <failIfNoTests>false</failIfNoTests>
 
         <!-- Dependency versions -->
-        <commons.codec.version>1.16.0</commons.codec.version>
+        <commons.codec.version>1.20.0</commons.codec.version>
         <commons.collections.version>3.2.2</commons.collections.version>
         <commons.lang.version>2.6</commons.lang.version>
-        <commons.io.version>2.17.0</commons.io.version>
+        <commons.io.version>2.21.0</commons.io.version>
         <commons.dbcp.version>1.4</commons.dbcp.version>
         <cron4j.version>2.2.5</cron4j.version>
-        <curator.version>5.2.0</curator.version>
+        <curator.version>5.3.0</curator.version>
         <guava.version>32.1.2-jre</guava.version>
         <grpc-context.version>1.62.2</grpc-context.version>
         <h2.version>1.4.197</h2.version>
@@ -95,16 +95,16 @@
         <lucene.bundle.version>7.4.0_1</lucene.bundle.version>
         <lucene.version>8.11.2</lucene.version>
         <lz4.version>1.10.1</lz4.version>
-        <maven.bundle.plugin.version>3.5.0</maven.bundle.plugin.version>
-        
<maven.checkstyle.plugin.version>3.1.1</maven.checkstyle.plugin.version>
+        <maven.bundle.plugin.version>3.5.1</maven.bundle.plugin.version>
+        
<maven.checkstyle.plugin.version>3.1.2</maven.checkstyle.plugin.version>
         <maven.flatten.plugin.version>1.7.1</maven.flatten.plugin.version>
         <maven.flatten.file.name>pom-installed.xml</maven.flatten.file.name>
-        <maven.model.version>3.8.4</maven.model.version>
+        <maven.model.version>3.8.9</maven.model.version>
         <checkstyle.puppycrawl.version>8.45</checkstyle.puppycrawl.version>
-        <mockito.version>3.12.4</mockito.version>
+        <mockito.version>5.21.0</mockito.version>
         <mysql.connector.version>8.0.30</mysql.connector.version>
         <postgres.connector.version>42.7.3</postgres.connector.version>
-        <slf4j.version>1.7.33</slf4j.version>
+        <slf4j.version>1.7.36</slf4j.version>
         <snappy.version>1.1.10.7</snappy.version>
         <spring.version>5.3.39</spring.version>
         <surefire.version>3.1.2</surefire.version>
@@ -115,6 +115,7 @@
         <opencensus.version>0.31.1</opencensus.version>
         <commons.lang3.version>3.18.0</commons.lang3.version>
         <ignite-kafka-ext.version>1.0.0</ignite-kafka-ext.version>
+        <xstream.version>1.4.17</xstream.version>
 
         <!-- Maven plugins versions -->
         <maven.javadoc.plugin.version>3.2.0</maven.javadoc.plugin.version>

Reply via email to