You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/07/28 16:57:58 UTC

[isis] branch master updated: ISIS-2817: fixes build on JDK-16+

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 1465e3d  ISIS-2817: fixes build on JDK-16+
1465e3d is described below

commit 1465e3dd4931526757285a2e2b3c1e4e99958865
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Jul 28 18:57:47 2021 +0200

    ISIS-2817: fixes build on JDK-16+
    
    tested with OpenJDK 17-ea+19-Debian-1
---
 api/schema/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/api/schema/pom.xml b/api/schema/pom.xml
index 103278c..22bea66 100644
--- a/api/schema/pom.xml
+++ b/api/schema/pom.xml
@@ -111,6 +111,12 @@
 								<artifactId>jaxb2-namespace-prefix</artifactId>
 								<version>1.3</version>
 							</dependency>
+							<dependency>
+								<!-- fixes build on JDK 16+ see https://github.com/highsource/maven-jaxb2-plugin/issues/201 -->
+								<groupId>org.glassfish.jaxb</groupId>
+								<artifactId>jaxb-runtime</artifactId>
+								<version>2.3.3</version>
+							</dependency>
 						</dependencies>
 					</plugin>
 					<plugin>