Skip to content

Commit

Permalink
Jakarta - Simplify classloader-linkage-error
Browse files Browse the repository at this point in the history
This makes the migration automatic and I confirmed the issue is still
present if we use quarkus-jaxb directly (removing the parent first
config gets us a LinkageError).

Fixes quarkusio#27508
  • Loading branch information
gsmet authored and evanchooly committed Sep 8, 2022
1 parent bd371b8 commit 7ab3283
Showing 1 changed file with 2 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
<maven.compiler.source>11</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<jaxb.version>2.3.1</jaxb.version>
<jaxb-core.version>2.3.0.1</jaxb-core.version>
<stax-api.version>1.0.1</stax-api.version>
</properties>
<dependencyManagement>
Expand All @@ -36,19 +34,8 @@
<artifactId>quarkus-resteasy</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb-core.version}</version>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jaxb</artifactId>
</dependency>
<dependency>
<groupId>stax</groupId>
Expand Down

0 comments on commit 7ab3283

Please sign in to comment.