From 1797fb9776d89e6f0d840235242f2954d2430d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20B=C3=BCnger?= Date: Tue, 12 May 2026 18:00:18 +0200 Subject: [PATCH 1/3] Enable Maven 4 build --- .github/workflows/maven-verify.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 2d827a276a..5f7e0201a9 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -50,3 +50,4 @@ jobs: !surefire-its/target/ConsoleOutputIT_*/target/surefire-reports/*-jvmRun*-events.bin timeout-minutes: 600 os-matrix: '[ "ubuntu-latest", "windows-latest", "macos-latest" ]' + maven4-enabled: true From 769448ccddf5cf2011fa0d1cfdd657088c429fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20B=C3=BCnger?= Date: Sun, 14 Jun 2026 16:39:31 +0200 Subject: [PATCH 2/3] Test exclude matrix --- .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 5f7e0201a9..25d657be00 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -51,3 +51,7 @@ jobs: timeout-minutes: 600 os-matrix: '[ "ubuntu-latest", "windows-latest", "macos-latest" ]' maven4-enabled: true + matrix-exclude: '[ + { "jdk": "11", "maven": "4" } + { "jdk": "8", "maven": "4" } + ]' From f9a391ac90192e66a33f3fe9069e5aa577d6f5cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20B=C3=BCnger?= Date: Sun, 14 Jun 2026 16:47:38 +0200 Subject: [PATCH 3/3] Test exclude matrix --- .github/workflows/maven-verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 25d657be00..5a9312a432 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -52,6 +52,6 @@ jobs: os-matrix: '[ "ubuntu-latest", "windows-latest", "macos-latest" ]' maven4-enabled: true matrix-exclude: '[ - { "jdk": "11", "maven": "4" } + { "jdk": "11", "maven": "4" }, { "jdk": "8", "maven": "4" } ]'