CCM NG: Dependencies for Jaxb (necessary since Java 11)
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@5873 8810af33-2d31-482b-a856-94f89814c4dfccm-docs
parent
643fe50d85
commit
1cf6b5f3cf
|
|
@ -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
15
pom.xml
|
|
@ -448,6 +448,21 @@
|
|||
<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>
|
||||
<groupId>org.apache.shiro</groupId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue