Skip to content

Commit

Permalink
try to remove jdk11/test failure by adding jaxp api dep
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 3, 2020
1 parent 09d95f0 commit 30a87fc
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions hibernate5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,34 @@ Hibernate (http://hibernate.org) version 5.x data types.
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.6</version>
<scope>test</scope>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.155</version>
<scope>test</scope>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.155</version>
<scope>test</scope>
</dependency>

<!-- 03-May-2020, tatu: JAXB API needed for tests too on JDK11, somehow
(but there are other issues too it seems)
-->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.2</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit 30a87fc

Please sign in to comment.