Skip to content

Commit

Permalink
Work-around jackson-module-jaxb-annotations module issue in 2.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Nov 8, 2024
1 parent e6e733f commit 019f9c8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integrations/oci/sdk/cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@
</exclusion>
</exclusions>
</dependency>
<!-- To satisfy jackson-module-jaxb-annotations 2.18.1 module dependency on java.xml.bind -->
<!-- Somehow this got messed up in Jackson 2.18 via PR https://github.com/FasterXML/jackson-modules-base/pull/235 -->
<!-- Which changed the jaxb dependency to javax.xml.bind which did not provide a module name -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.inject</groupId>
<artifactId>jakarta.inject-api</artifactId>
Expand Down

0 comments on commit 019f9c8

Please sign in to comment.