Skip to content

Commit 6b8a906

Browse files
ruanhang1993dannycranmer
authored andcommitted
[hotfix] Fix the dependency convergence rule
1 parent ddbfa8f commit 6b8a906

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

flink-connector-rabbitmq/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ under the License.
8080
<groupId>org.testcontainers</groupId>
8181
<artifactId>rabbitmq</artifactId>
8282
<scope>test</scope>
83+
<exclusions>
84+
<exclusion>
85+
<groupId>com.fasterxml.jackson.core</groupId>
86+
<artifactId>jackson-annotations</artifactId>
87+
</exclusion>
88+
</exclusions>
8389
</dependency>
8490

8591
<!-- ArchUit test dependencies -->

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,12 @@ under the License.
110110
<groupId>org.testcontainers</groupId>
111111
<artifactId>junit-jupiter</artifactId>
112112
<scope>test</scope>
113+
<exclusions>
114+
<exclusion>
115+
<groupId>com.fasterxml.jackson.core</groupId>
116+
<artifactId>jackson-annotations</artifactId>
117+
</exclusion>
118+
</exclusions>
113119
</dependency>
114120

115121
<!-- Tests will have log4j as the default logging framework available -->
@@ -136,6 +142,12 @@ under the License.
136142
<groupId>org.apache.flink</groupId>
137143
<artifactId>flink-test-utils-junit</artifactId>
138144
<scope>test</scope>
145+
<exclusions>
146+
<exclusion>
147+
<groupId>com.fasterxml.jackson.core</groupId>
148+
<artifactId>jackson-annotations</artifactId>
149+
</exclusion>
150+
</exclusions>
139151
</dependency>
140152

141153
<!-- ArchUit test dependencies -->
@@ -400,4 +412,4 @@ under the License.
400412
</plugin>
401413
</plugins>
402414
</build>
403-
</project>
415+
</project>

0 commit comments

Comments
 (0)