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 dfb3f3b
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions hibernate-types-60/pom.xml
Expand Up @@ -24,18 +24,10 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson-module-jaxb-annotation}</version>
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
<version>${jackson-module-jakarta-xmlbind-annotation}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
Expand Down Expand Up @@ -82,9 +74,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 @@ -96,12 +92,13 @@
<postgresql.version>42.3.3</postgresql.version>

<mysql.version>8.0.28</mysql.version>
<jackson-databind.version>2.12.6.1</jackson-databind.version>
<jackson-module-jaxb-annotation>2.12.6</jackson-module-jaxb-annotation>
<jackson-module-jakarta-xmlbind-annotation>2.13.3</jackson-module-jakarta-xmlbind-annotation>
<guava.version>31.1-jre</guava.version>
<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 dfb3f3b

Please sign in to comment.