Skip to content

Commit 1f171fe

Browse files
committed
[hotfix] exclude test containers from transitive deps for dependency convergence with Flink 1.17.2
1 parent 506165b commit 1f171fe

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

flink-connector-cassandra/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,13 @@ under the License.
238238
<artifactId>flink-test-utils-junit</artifactId>
239239
<version>${flink.version}</version>
240240
<scope>test</scope>
241+
<!-- For dependency convergence-->
242+
<exclusions>
243+
<exclusion>
244+
<groupId>org.testcontainers</groupId>
245+
<artifactId>testcontainers</artifactId>
246+
</exclusion>
247+
</exclusions>
241248
</dependency>
242249

243250
<dependency>
@@ -275,6 +282,13 @@ under the License.
275282
<artifactId>flink-connector-test-utils</artifactId>
276283
<version>${flink.version}</version>
277284
<scope>test</scope>
285+
<!-- For dependency convergence-->
286+
<exclusions>
287+
<exclusion>
288+
<groupId>org.testcontainers</groupId>
289+
<artifactId>testcontainers</artifactId>
290+
</exclusion>
291+
</exclusions>
278292
</dependency>
279293

280294
<dependency>

0 commit comments

Comments
 (0)