Exclude Jackson from transitive dependencies

This commit is contained in:
Mahmoud Ben Hassine
2022-10-19 11:28:54 +02:00
parent d55a091654
commit 866fe37eb0
2 changed files with 36 additions and 0 deletions

View File

@@ -109,6 +109,18 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>