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/05/10 15:44:44 UTC

[maven-invoker-plugin] 01/01: Changed compiler level to 1.6 cause this is not supported by JDK 9, JDK10 anymore.

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

khmarbaise pushed a commit to branch FIXING-BUILD-ISSUE
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git

commit 2060871fd589ca436e7bd926caabccf22c054cf0
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Thu May 10 16:14:08 2018 +0200

    Changed compiler level to 1.6 cause this is not supported by
    JDK 9, JDK10 anymore.
---
 src/it/postbuild-executed-only-once/src/it/project/pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/it/postbuild-executed-only-once/src/it/project/pom.xml b/src/it/postbuild-executed-only-once/src/it/project/pom.xml
index 74abf19..efbef26 100644
--- a/src/it/postbuild-executed-only-once/src/it/project/pom.xml
+++ b/src/it/postbuild-executed-only-once/src/it/project/pom.xml
@@ -48,6 +48,15 @@ under the License.
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>3.7.0</version>
+          <configuration>
+            <source>1.6</source>
+            <target>1.6</target>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.21.0</version>
           <configuration>

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.