Skip to content

Commit 0109031

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

File tree

1 file changed

+27
-12
lines changed

1 file changed

+27
-12
lines changed

pom.xml

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ 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>
55-
<testcontainers.version>1.17.2</testcontainers.version>
55+
<testcontainers.version>1.19.3</testcontainers.version>
5656
<mockito.version>3.4.6</mockito.version>
5757
<hamcrest.version>1.3</hamcrest.version>
5858

@@ -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>
@@ -256,25 +257,32 @@ under the License.
256257

257258
<!-- For dependency convergence -->
258259
<dependency>
259-
<groupId>org.junit.platform</groupId>
260-
<artifactId>junit-platform-engine</artifactId>
261-
<version>1.9.1</version>
260+
<groupId>org.junit.vintage</groupId>
261+
<artifactId>junit-vintage-engine</artifactId>
262+
<version>${junit5.version}</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.platform</groupId>
268+
<artifactId>junit-platform-engine</artifactId>
269+
<version>1.10.1</version>
269270
</dependency>
270271

271272
<!-- For dependency convergence -->
272273
<dependency>
273274
<groupId>org.junit.jupiter</groupId>
274-
<artifactId>junit-jupiter-api</artifactId>
275+
<artifactId>junit-jupiter</artifactId>
275276
<version>${junit5.version}</version>
276277
</dependency>
277278

279+
<!-- For dependency convergence -->
280+
<dependency>
281+
<groupId>com.esotericsoftware.kryo</groupId>
282+
<artifactId>kryo</artifactId>
283+
<version>2.24.0</version>
284+
</dependency>
285+
278286
<!-- For dependency convergence -->
279287
<dependency>
280288
<groupId>net.bytebuddy</groupId>
@@ -296,6 +304,13 @@ under the License.
296304
<version>2.6</version>
297305
</dependency>
298306

307+
<!-- For dependency convergence -->
308+
<dependency>
309+
<groupId>org.apache.commons</groupId>
310+
<artifactId>commons-compress</artifactId>
311+
<version>1.24.0</version>
312+
</dependency>
313+
299314
</dependencies>
300315
</dependencyManagement>
301316

0 commit comments

Comments
 (0)