This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 9d067f23c36 [hotfix][javadoc] Use `skip-webui-build` while
`javadoc:aggregate`
9d067f23c36 is described below
commit 9d067f23c3600d8261a1d67d0381d9d5f423e778
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Tue Jan 13 22:05:46 2026 +0100
[hotfix][javadoc] Use `skip-webui-build` while `javadoc:aggregate`
---
tools/ci/compile.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/ci/compile.sh b/tools/ci/compile.sh
index 8e55a9717f6..5448713c028 100755
--- a/tools/ci/compile.sh
+++ b/tools/ci/compile.sh
@@ -86,7 +86,7 @@ javadoc_output=/tmp/javadoc.out
# use the same invocation as .github/workflows/docs.sh
$MVN javadoc:aggregate -DadditionalJOption='-Xdoclint:none' \
-Dmaven.javadoc.failOnError=false -Dcheckstyle.skip=true
-Denforcer.skip=true -Dspotless.skip=true -Drat.skip=true \
- -Dheader=someTestHeader > ${javadoc_output}
+ -Dheader=someTestHeader -Pskip-webui-build > ${javadoc_output}
EXIT_CODE=$?
if [ $EXIT_CODE != 0 ] ; then
echo "ERROR in Javadocs. Printing full output:"