Skip to content

Commit

Permalink
[hotfix] exclude test containers from transitive deps for dependency …
Browse files Browse the repository at this point in the history
…convergence with Flink 1.17.2
  • Loading branch information
echauchot committed Mar 5, 2024
1 parent 506165b commit 1f171fe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions flink-connector-cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,13 @@ under the License.
<artifactId>flink-test-utils-junit</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
<!-- For dependency convergence-->
<exclusions>
<exclusion>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -275,6 +282,13 @@ under the License.
<artifactId>flink-connector-test-utils</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
<!-- For dependency convergence-->
<exclusions>
<exclusion>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 1f171fe

Please sign in to comment.