Skip to content

Commit 8f30ae0

Browse files
AmitKumarDeoghoriaromani
authored andcommitted
Issue #17168: Migrating LinkcheckPlugin to Jdk17
1 parent effc726 commit 8f30ae0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.ci/run-link-check-plugin.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ LINKCHECK_ERRORS=$(grep -E "doesn't exist|externalLink" target/site/linkcheck.ht
2222
if [[ $OPTION == "--skip-external" ]]; then
2323
echo "Checking internal (checkstyle website) links only."
2424
echo "$LINKCHECK_ERRORS" | grep -v 'externalLink' | sort > .ci-temp/linkcheck-errors-sorted.txt
25-
sort config/linkcheck-suppressions.txt | grep -v 'apidocs/constant-values.html' \
26-
> .ci-temp/linkcheck-suppressions-sorted.txt
25+
sort config/linkcheck-suppressions.txt > .ci-temp/linkcheck-suppressions-sorted.txt
2726
else
2827
echo "Checking internal (checkstyle website) and external links."
2928
echo "$LINKCHECK_ERRORS" | sort > .ci-temp/linkcheck-errors-sorted.txt

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ workflows:
230230
command: "./.ci/validation.sh no-error-pgjdbc"
231231
- validate-with-maven-script:
232232
name: "linkcheck-plugin"
233-
image-name: "cimg/openjdk:11.0.19"
233+
image-name: "cimg/openjdk:17.0.7"
234234
command: "./.ci/run-link-check-plugin.sh --skip-external"
235235
- validate-with-maven-script:
236236
name: "no-exception-samples-gradle"

0 commit comments

Comments
 (0)