This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
The following commit(s) were added to refs/heads/master by this push: new c288823 [MCOMPILER-531] Prepare for Java 20(-ea) c288823 is described below commit c2888237b02598fa2827ca06a130e2134692a42d Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Mon Mar 13 00:19:09 2023 +0100 [MCOMPILER-531] Prepare for Java 20(-ea) --- .github/workflows/maven-verify.yml | 4 ++-- src/it/MCOMPILER-272/pom.xml | 4 ++-- src/it/MCOMPILER-373_mrjar/pom.xml | 4 ++-- src/it/MCOMPILER-379/pom.xml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 71a27fa..522211a 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -28,6 +28,6 @@ jobs: with: # maven-args: "-Dinvoker.parallelThreads=2" cannot do this as this generate some concurrent download issues jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "adopt-openj9" ]' - jdk-matrix: '[ "8", "11", "17", "18" ]' # "19-ea" - matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"},{ "jdk": "19-ea", "distribution": "microsoft"},{ "jdk": "18", "distribution": "microsoft"},{ "jdk": "19-ea", "distribution": "adopt-openj9"},]' + jdk-matrix: '[ "8", "11", "17", "20-ea" ]' + matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"},{ "jdk": "20-ea", "distribution": "microsoft"},{ "jdk": "20-ea", "distribution": "adopt-openj9"},]' maven-matrix: '[ "3.3.9", "3.8.7", "3.9.0" ]' # Maven versions matrix for verify builds diff --git a/src/it/MCOMPILER-272/pom.xml b/src/it/MCOMPILER-272/pom.xml index 29e2d0e..6619986 100644 --- a/src/it/MCOMPILER-272/pom.xml +++ b/src/it/MCOMPILER-272/pom.xml @@ -47,8 +47,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>@project.version@</version> <configuration> - <source>7</source> - <target>7</target> + <source>8</source> + <target>8</target> </configuration> </plugin> </plugins> diff --git a/src/it/MCOMPILER-373_mrjar/pom.xml b/src/it/MCOMPILER-373_mrjar/pom.xml index e89f4f6..e011aae 100644 --- a/src/it/MCOMPILER-373_mrjar/pom.xml +++ b/src/it/MCOMPILER-373_mrjar/pom.xml @@ -33,8 +33,8 @@ under the License. <artifactId>maven-compiler-plugin</artifactId> <version>@project.version@</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>8</source> + <target>8</target> </configuration> <!-- define the possible compilations --> <executions> diff --git a/src/it/MCOMPILER-379/pom.xml b/src/it/MCOMPILER-379/pom.xml index 53eb9b4..f7ffd66 100644 --- a/src/it/MCOMPILER-379/pom.xml +++ b/src/it/MCOMPILER-379/pom.xml @@ -45,8 +45,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>@project.version@</version> <configuration> - <source>7</source> - <target>7</target> + <source>8</source> + <target>8</target> </configuration> </plugin> </plugins>