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/02/06 06:02:35 UTC

[isis] branch v1-lab updated: fixes maven build core+helloworld (using jdk-8)

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

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


The following commit(s) were added to refs/heads/v1-lab by this push:
     new 887d26a  fixes maven build core+helloworld (using jdk-8)
887d26a is described below

commit 887d26ad304a95703cb576dfeb6e24b359d7a202
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Feb 6 07:01:57 2021 +0100

    fixes maven build core+helloworld (using jdk-8)
---
 core/schema/pom.xml                    | 1 +
 core/unittestsupport/pom.xml           | 2 ++
 example/application/helloworld/pom.xml | 4 ++++
 3 files changed, 7 insertions(+)

diff --git a/core/schema/pom.xml b/core/schema/pom.xml
index 7794ce0..d80f739 100644
--- a/core/schema/pom.xml
+++ b/core/schema/pom.xml
@@ -48,6 +48,7 @@
         <dependency>
 		    <groupId>javax.xml.bind</groupId>
 		    <artifactId>jaxb-api</artifactId>
+		    <scope>provided</scope>
 		</dependency>
         
     </dependencies>
diff --git a/core/unittestsupport/pom.xml b/core/unittestsupport/pom.xml
index 1f661db..55d79d6 100644
--- a/core/unittestsupport/pom.xml
+++ b/core/unittestsupport/pom.xml
@@ -80,11 +80,13 @@
         <dependency>
 		    <groupId>javax.xml.bind</groupId>
 		    <artifactId>jaxb-api</artifactId>
+		    <scope>provided</scope>
 		</dependency>
 
 		<dependency>
 		    <groupId>javax.xml.ws</groupId>
 		    <artifactId>jaxws-api</artifactId>
+		    <scope>provided</scope>
 		</dependency>
 
         <dependency>
diff --git a/example/application/helloworld/pom.xml b/example/application/helloworld/pom.xml
index 3fedaa5..a669780 100644
--- a/example/application/helloworld/pom.xml
+++ b/example/application/helloworld/pom.xml
@@ -39,6 +39,10 @@
         <revision>1.0.0-SNAPSHOT</revision>
         <isis.version>1.0.0-SNAPSHOT</isis.version>
 
+		<maven.compiler.release>1.8</maven.compiler.release>
+		<maven.compiler.source>1.8</maven.compiler.source>
+		<maven.compiler.target>1.8</maven.compiler.target>
+
         <compiler-plugin.source>1.8</compiler-plugin.source>
         <compiler-plugin.target>1.8</compiler-plugin.target>
         <compiler-plugin.compilerArgument>-parameters</compiler-plugin.compilerArgument>