Skip to content

Commit b9f8a01

Browse files
Fix build (#264)
- exclude JDK 21 with adopt-openj9 - it is not present - Disable MJAVADOC-427 on JDK 8
1 parent 69cbe47 commit b9f8a01

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ jobs:
2727
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
2828
with:
2929
jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]'
30-
matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]'
30+
matrix-exclude: '[
31+
{ "jdk": "8", "distribution": "microsoft"},
32+
{ "jdk": "21", "distribution": "adopt-openj9"}
33+
]'

src/it/projects/MJAVADOC-427/invoker.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@
1818
invoker.goals=clean javadoc:javadoc
1919

2020
# slf4j javadoc is hosted on https site with a "let's encrypt" certificate, signed by IdenTrust only trusted since 8u101 (JDK-8154757)
21-
invoker.java.version = 1.8.0.101+
21+
# consider to execute on JDK8 after - MJAVADOC-786
22+
invoker.java.version = 9+

0 commit comments

Comments
 (0)