Skip to content

Commit

Permalink
Spring Boot 3 throws NoClassDefFoundError - javax/xml/bind/annotation…
Browse files Browse the repository at this point in the history
…/XmlElement #459
  • Loading branch information
vladmihalcea committed Jul 26, 2022
1 parent 0e1fbf2 commit 99c702b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions hibernate-types-60/pom.xml
Expand Up @@ -82,9 +82,13 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
<optional>true</optional>
<version>${jaxb-api.version}</version>
</dependency>

<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta-bind.api.version}</version>
</dependency>

</dependencies>
Expand All @@ -102,6 +106,8 @@
<moneta.version>1.4.2</moneta.version>

<ehcache.version>3.10.0</ehcache.version>
<jaxb-api.version>2.3.0</jaxb-api.version>
<jakarta-bind.api.version>3.0.1</jakarta-bind.api.version>

</properties>

Expand Down

0 comments on commit 99c702b

Please sign in to comment.