Skip to content

Commit

Permalink
Merge pull request #74 from DSpace/jdk11_compatibility
Browse files Browse the repository at this point in the history
JDK11 compatibility for 3.x branch
  • Loading branch information
tdonohue authored Feb 21, 2020
2 parents 68dae59 + 6cbca63 commit 482deeb
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
<version>1.3</version>
</dependency>
<dependency>
<groupId>woodstox</groupId>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>wstx-asl</artifactId>
<version>3.2.0</version>
</dependency>
Expand All @@ -227,9 +227,14 @@
<version>9.8.0-14</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.5</version>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -243,13 +248,15 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<artifactId>mockito-core</artifactId>
<version>2.28.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand All @@ -265,11 +272,18 @@
<groupId>com.lyncode</groupId>
<artifactId>test-support</artifactId>
<version>1.0.3</version>
<exclusions>
<!-- Newer version of dom4j is specified below -->
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
Expand Down

0 comments on commit 482deeb

Please sign in to comment.