Skip to content

Commit 37f412b

Browse files
committed
[FLINK-34020] Address dependency convergence
1 parent 649f06e commit 37f412b

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

pom.xml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ under the License.
5050
<properties>
5151
<flink.version>1.16.0</flink.version>
5252

53-
<junit5.version>5.9.1</junit5.version>
53+
<junit5.version>5.10.1</junit5.version>
5454
<assertj.version>3.23.1</assertj.version>
5555
<testcontainers.version>1.17.2</testcontainers.version>
5656
<mockito.version>3.4.6</mockito.version>
@@ -84,10 +84,11 @@ under the License.
8484

8585
<!-- Test dependencies -->
8686
<dependency>
87-
<groupId>org.junit.jupiter</groupId>
88-
<artifactId>junit-jupiter</artifactId>
87+
<groupId>org.junit</groupId>
88+
<artifactId>junit-bom</artifactId>
8989
<version>${junit5.version}</version>
90-
<scope>test</scope>
90+
<type>pom</type>
91+
<scope>import</scope>
9192
</dependency>
9293

9394
<dependency>
@@ -258,21 +259,21 @@ under the License.
258259
<dependency>
259260
<groupId>org.junit.platform</groupId>
260261
<artifactId>junit-platform-engine</artifactId>
261-
<version>1.9.1</version>
262+
<version>1.10.1</version>
262263
</dependency>
263264

264265
<!-- For dependency convergence -->
265266
<dependency>
266-
<groupId>com.esotericsoftware.kryo</groupId>
267-
<artifactId>kryo</artifactId>
268-
<version>2.24.0</version>
267+
<groupId>org.junit.jupiter</groupId>
268+
<artifactId>junit-jupiter</artifactId>
269+
<version>${junit5.version}</version>
269270
</dependency>
270271

271272
<!-- For dependency convergence -->
272273
<dependency>
273-
<groupId>org.junit.jupiter</groupId>
274-
<artifactId>junit-jupiter-api</artifactId>
275-
<version>${junit5.version}</version>
274+
<groupId>com.esotericsoftware.kryo</groupId>
275+
<artifactId>kryo</artifactId>
276+
<version>2.24.0</version>
276277
</dependency>
277278

278279
<!-- For dependency convergence -->
@@ -296,6 +297,13 @@ under the License.
296297
<version>2.6</version>
297298
</dependency>
298299

300+
<!-- For dependency convergence -->
301+
<dependency>
302+
<groupId>org.apache.commons</groupId>
303+
<artifactId>commons-compress</artifactId>
304+
<version>1.24.0</version>
305+
</dependency>
306+
299307
</dependencies>
300308
</dependencyManagement>
301309

0 commit comments

Comments
 (0)