Skip to content

Commit

Permalink
Use jaxb 2.3.1 or newer to avoid deprecation warnings on Java 9+
Browse files Browse the repository at this point in the history
  • Loading branch information
FarmGeek4Life committed May 6, 2019
1 parent 48d2389 commit 8ae16b1
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<!-- Dependencies -->
<uk.ac.ebi.pride.architectural-pride-xml-handling.version>1.0.3</uk.ac.ebi.pride.architectural-pride-xml-handling.version>
<org.jvnet.jaxb2.maven2-maven-jaxb2-plugin.version>0.6.3</org.jvnet.jaxb2.maven2-maven-jaxb2-plugin.version>
<jaxb.version>2.3.2</jaxb.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -89,22 +90,13 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
<version>${jaxb.version}</version>

This comment has been minimized.

Copy link
@mirabilos

mirabilos Jun 14, 2019

How does this even work? There is no javax.xml.bind:jaxb-api:2.3.2 according to mvnrepos.com…

</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>javax.activation</artifactId>
<version>1.2.0</version>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit 8ae16b1

Please sign in to comment.