Skip to content

Commit

Permalink
Fix build (#264)
Browse files Browse the repository at this point in the history
- exclude JDK 21 with adopt-openj9 - it is not present
- Disable MJAVADOC-427 on JDK 8
  • Loading branch information
slawekjaranowski committed Jan 11, 2024
1 parent 69cbe47 commit b9f8a01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]'
3 changes: 2 additions & 1 deletion src/it/projects/MJAVADOC-427/invoker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
invoker.goals=clean javadoc:javadoc

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

0 comments on commit b9f8a01

Please sign in to comment.