We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d2121 commit bdf32d7Copy full SHA for bdf32d7
2 files changed
.github/workflows/build_docs.yml
@@ -22,6 +22,8 @@ on:
22
- release-*
23
paths:
24
- 'docs/**'
25
+ - '.github/workflows/build_docs.yml'
26
+ - '.github/workflows/docs.sh'
27
schedule:
28
- cron: '0 0 * * *' # Deploy every day
29
workflow_dispatch:
.github/workflows/docs.sh
@@ -54,7 +54,9 @@ mvn clean install -B -DskipTests -Dfast
54
55
# build java/scala docs
56
mkdir -p docs/target/api
57
+# Compatibility modules target different Flink versions and cannot share a Javadoc classpath.
58
mvn javadoc:aggregate -B \
59
+ -pl '!flink-cdc-flink1-compat,!flink-cdc-flink2-compat' \
60
-DadditionalJOption="-Xdoclint:none --allow-script-in-comments" \
61
-Dmaven.javadoc.failOnError=false \
62
-Dcheckstyle.skip=true \
0 commit comments