Skip to content

Commit 4bcc6b1

Browse files
committed
Exclude jackson-core from avro dependency
This was bringing a version of Jackson that is conflicting with the required version of Jackson.
1 parent 2b258d1 commit 4bcc6b1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spring-batch-infrastructure/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@
8888
<artifactId>avro</artifactId>
8989
<version>${avro.version}</version>
9090
<optional>true</optional>
91+
<exclusions>
92+
<exclusion>
93+
<groupId>com.fasterxml.jackson.core</groupId>
94+
<artifactId>jackson-core</artifactId>
95+
</exclusion>
96+
</exclusions>
9197
</dependency>
9298
<dependency>
9399
<groupId>com.google.code.gson</groupId>

0 commit comments

Comments
 (0)