CCM NG: Dependencies for Jaxb (necessary since Java 11)

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@5873 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
jensp 2019-03-20 18:17:51 +00:00
parent e3c3d368f3
commit c7829a961c
2 changed files with 26 additions and 0 deletions

View File

@ -73,6 +73,17 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>provided</scope>
</dependency>
<!--
Flyway framework for database schema migrations
-->

15
pom.xml
View File

@ -447,6 +447,21 @@
<artifactId>flyway-core</artifactId>
<version>4.0.3</version>
</dependency>
<!--
Since Java 11 jaxb is not longer part of the standard JDK.
Java EE implementations must provide an implementation.
-->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.4.0-b180830.0438</version>
</dependency>
<!-- Shiro lib for security stuff -->
<dependency>