Skip to content

Commit 01b784f

Browse files
committed
Excludes extra heavy, non-required dependency 'byte-buddy' which accidentally became a dependency of jackson-databind (see: FasterXML/jackson-databind#4428) updated to version 2.17.0 (via OPENNLP-1552)
1 parent 4ed8a57 commit 01b784f

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

opennlp-brat-annotator/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@
6161
<artifactId>jackson-databind</artifactId>
6262
<version>${jackson.version}</version>
6363
<scope>runtime</scope>
64+
<exclusions>
65+
<!-- Byte-Buddy became a dependency by accident - TODO remove it with update version > 2.17.0 -->
66+
<exclusion>
67+
<groupId>net.bytebuddy</groupId>
68+
<artifactId>byte-buddy</artifactId>
69+
</exclusion>
70+
</exclusions>
6471
</dependency>
6572

6673
<dependency>

opennlp-dl/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@
4545
<groupId>com.fasterxml.jackson.core</groupId>
4646
<artifactId>jackson-databind</artifactId>
4747
<version>${jackson.version}</version>
48+
<exclusions>
49+
<!-- Byte-Buddy became a dependency by accident - TODO remove it with update version > 2.17.0 -->
50+
<exclusion>
51+
<groupId>net.bytebuddy</groupId>
52+
<artifactId>byte-buddy</artifactId>
53+
</exclusion>
54+
</exclusions>
4855
</dependency>
4956
<dependency>
5057
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)