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
parent
98e680f2ad
commit
6efc7c0a32
|
|
@ -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
15
pom.xml
|
|
@ -447,6 +447,21 @@
|
||||||
<artifactId>flyway-core</artifactId>
|
<artifactId>flyway-core</artifactId>
|
||||||
<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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue