You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/06/21 19:09:09 UTC

[maven-remote-resources-plugin] 02/07: Upgraded minimum target/source for some parts cause JDK 9 does not support target 5 anymore.

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

khmarbaise pushed a commit to branch MRRESOURCES-104
in repository https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git

commit ad51204e5de90b128a312b0806c95a6bcd841410
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Apr 7 22:34:10 2018 +0200

    Upgraded minimum target/source for some parts cause
    JDK 9 does not support target 5 anymore.
---
 .gitignore                                                       | 1 +
 src/it/resources/supplemental-artifact/pom.xml                   | 6 +++++-
 src/it/resources/supplemental-artifact/resource-projects/pom.xml | 5 +++++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index f79c928..7495d7e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ out/
 /bootstrap
 /dependencies.xml
 .java-version
+.checkstyle
diff --git a/src/it/resources/supplemental-artifact/pom.xml b/src/it/resources/supplemental-artifact/pom.xml
index b20f438..f6976ba 100644
--- a/src/it/resources/supplemental-artifact/pom.xml
+++ b/src/it/resources/supplemental-artifact/pom.xml
@@ -39,7 +39,11 @@ under the License.
       <version>1</version>
     </dependency>
   </dependencies>
-  
+
+  <properties>
+    <maven.compiler.source>1.6</maven.compiler.source>
+    <maven.compiler.target>1.6</maven.compiler.target>
+  </properties> 
   <build>
     <plugins>
       <plugin>
diff --git a/src/it/resources/supplemental-artifact/resource-projects/pom.xml b/src/it/resources/supplemental-artifact/resource-projects/pom.xml
index a1a4dbc..7dfc7c1 100644
--- a/src/it/resources/supplemental-artifact/resource-projects/pom.xml
+++ b/src/it/resources/supplemental-artifact/resource-projects/pom.xml
@@ -24,6 +24,11 @@ under the License.
   <version>1</version>
   <packaging>pom</packaging>
   
+  <properties>
+    <maven.compiler.source>1.6</maven.compiler.source>
+    <maven.compiler.target>1.6</maven.compiler.target>
+  </properties> 
+  
   <modules>
     <module>supplemental-models</module>
     <module>deficient-dep</module>