This is an automated email from the ASF dual-hosted git repository. chesnay pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
from b7154f2347b [FLINK-31749][hotfix][doc] Fix HadoopInputFormat example code for DataStream new 975d23b0e4c [hotfix][hive] Mark mapreduce-client-core as provided new edf5666224f [FLINK-28203][tests] Add e2e shade plugin id new 49dcdf0fc2a [FLINK-28203][build] Mark bundled dependencies as optional new 4fa80bf27b5 [FLINK-28203][build] Add ShadeOptionalChecker new f0d01903aaa [FLINK-28016][ci] Update CI to use Maven 3.8.6 The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .mvn/wrapper/maven-wrapper.properties | 2 +- README.md | 2 +- azure-pipelines.yml | 6 +- docs/content.zh/docs/flinkDev/building.md | 25 -- docs/content/docs/flinkDev/building.md | 35 --- flink-connectors/flink-connector-files/pom.xml | 1 + flink-connectors/flink-connector-hive/pom.xml | 6 + .../flink-sql-connector-hbase-1.4/pom.xml | 1 + .../flink-sql-connector-hbase-2.2/pom.xml | 1 + .../flink-sql-connector-hive-2.3.9/pom.xml | 3 + .../flink-sql-connector-hive-3.1.3/pom.xml | 7 + flink-connectors/flink-sql-connector-kafka/pom.xml | 1 + flink-dist-scala/pom.xml | 2 + flink-dist/pom.xml | 34 +++ .../flink-sql-client-test/pom.xml | 2 + .../flink-examples-streaming-state-machine/pom.xml | 1 + flink-filesystems/flink-azure-fs-hadoop/pom.xml | 3 + flink-filesystems/flink-fs-hadoop-shaded/pom.xml | 1 + flink-filesystems/flink-gs-fs-hadoop/pom.xml | 4 + flink-filesystems/flink-oss-fs-hadoop/pom.xml | 4 + flink-filesystems/flink-s3-fs-hadoop/pom.xml | 1 + flink-filesystems/flink-s3-fs-presto/pom.xml | 20 +- flink-formats/flink-csv/pom.xml | 1 + flink-formats/flink-json/pom.xml | 1 + .../flink-sql-avro-confluent-registry/pom.xml | 1 + flink-formats/flink-sql-avro/pom.xml | 1 + flink-formats/flink-sql-csv/pom.xml | 1 + flink-formats/flink-sql-json/pom.xml | 1 + flink-formats/flink-sql-orc/pom.xml | 1 + flink-formats/flink-sql-parquet/pom.xml | 2 + flink-formats/flink-sql-protobuf/pom.xml | 1 + flink-kubernetes/pom.xml | 1 + flink-metrics/flink-metrics-datadog/pom.xml | 1 + flink-metrics/flink-metrics-graphite/pom.xml | 3 + flink-metrics/flink-metrics-influxdb/pom.xml | 1 + flink-metrics/flink-metrics-prometheus/pom.xml | 3 + flink-python/pom.xml | 8 + flink-rpc/flink-rpc-akka/pom.xml | 6 + flink-runtime/pom.xml | 1 + flink-table/flink-sql-client/pom.xml | 3 + flink-table/flink-sql-gateway/pom.xml | 1 + flink-table/flink-sql-jdbc-driver-bundle/pom.xml | 7 + flink-table/flink-table-api-java-uber/pom.xml | 5 + flink-table/flink-table-code-splitter/pom.xml | 1 + .../flink-table-planner-loader-bundle/pom.xml | 1 + flink-table/flink-table-planner/pom.xml | 4 + flink-table/flink-table-runtime/pom.xml | 4 + pom.xml | 21 +- tools/azure-pipelines/build-apache-repo.yml | 6 +- tools/ci/compile.sh | 4 + .../tools/ci/optional/ShadeOptionalChecker.java | 266 +++++++++++++++++++++ .../tools/ci/utils/shared/DependencyTree.java | 20 +- .../ci/optional/ShadeOptionalCheckerTest.java | 181 ++++++++++++++ tools/ci/maven-utils.sh | 2 +- tools/ci/verify_bundled_optional.sh | 48 ++++ 55 files changed, 686 insertions(+), 84 deletions(-) create mode 100644 tools/ci/flink-ci-tools/src/main/java/org/apache/flink/tools/ci/optional/ShadeOptionalChecker.java create mode 100644 tools/ci/flink-ci-tools/src/test/java/org/apache/flink/tools/ci/optional/ShadeOptionalCheckerTest.java create mode 100755 tools/ci/verify_bundled_optional.sh