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

Former-commit-id: b0c4bf5e68
pull/2/head
jensp 2019-03-20 18:17:51 +00:00
parent 98e680f2ad
commit 6efc7c0a32
2 changed files with 26 additions and 0 deletions

View File

@ -73,6 +73,17 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </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 Flyway framework for database schema migrations
--> -->

15
pom.xml
View File

@ -448,6 +448,21 @@
<version>4.0.3</version> <version>4.0.3</version>
</dependency> </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 --> <!-- Shiro lib for security stuff -->
<dependency> <dependency>
<groupId>org.apache.shiro</groupId> <groupId>org.apache.shiro</groupId>