This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch fix-jdk21 in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git
commit 19f0c3eb81c2c7b58b9978c04bbc103fdbe77beb Author: Slawomir Jaranowski <s.jaranow...@gmail.com> AuthorDate: Wed Jan 10 23:34:48 2024 +0100 Fix build with JDK 21 --- .github/workflows/maven.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b0b4e3b3..b522dcb0 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,4 +27,7 @@ jobs: uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3 with: jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]' - matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]' + matrix-exclude: '[ + { "jdk": "8", "distribution": "microsoft"}, + { "jdk": "21", "distribution": "adopt-openj9"} + ]'