This is an automated email from the ASF dual-hosted git repository. dannycranmer pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-connector-rabbitmq.git
commit 6b8a9060629e72fa08c9f78507c26ea5f27c2f3f Author: Hang Ruan <[email protected]> AuthorDate: Tue Feb 6 17:15:03 2024 +0800 [hotfix] Fix the dependency convergence rule --- flink-connector-rabbitmq/pom.xml | 6 ++++++ pom.xml | 14 +++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/flink-connector-rabbitmq/pom.xml b/flink-connector-rabbitmq/pom.xml index 93cb8de..22d0c3a 100644 --- a/flink-connector-rabbitmq/pom.xml +++ b/flink-connector-rabbitmq/pom.xml @@ -80,6 +80,12 @@ under the License. <groupId>org.testcontainers</groupId> <artifactId>rabbitmq</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </exclusion> + </exclusions> </dependency> <!-- ArchUit test dependencies --> diff --git a/pom.xml b/pom.xml index 43381e5..91701fe 100644 --- a/pom.xml +++ b/pom.xml @@ -110,6 +110,12 @@ under the License. <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </exclusion> + </exclusions> </dependency> <!-- Tests will have log4j as the default logging framework available --> @@ -136,6 +142,12 @@ under the License. <groupId>org.apache.flink</groupId> <artifactId>flink-test-utils-junit</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </exclusion> + </exclusions> </dependency> <!-- ArchUit test dependencies --> @@ -400,4 +412,4 @@ under the License. </plugin> </plugins> </build> -</project> \ No newline at end of file +</project>
