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
commit 7f48ae40bafccaf2caefb1ef51e408bde0c52c19 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sun Sep 28 12:44:07 2025 +0200 Add matrix exclusion for specific JDK distributions --- .github/workflows/maven-verify.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index cff338c..5cc2570 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -29,3 +29,7 @@ jobs: jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "adopt-openj9" ]' maven4-build: true maven4-version: '4.0.0-rc-4' # the same as used in project + matrix-exclude: '[ + { "jdk": "25", "distribution": "adopt-openj9" }, + { "jdk": "25", "distribution": "microsoft"} + ]'
