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 144d92e [FLINK-19687][table] Support JSON_EXECUTION_PLAN for the
explain result
add f2adacc [FLINK-20455][oss][legal] Move license to META-INF directory
add 3124e7e [FLINK-20455][influxdb][legal] Inline notice
add fea6519 [FLINK-20455][table][legal] Exclude icu4j LICENSE file
add 8fe1928 [FLINK-20455][build][legal] Bundle LICENSE/NOTICE in various
deployed jars
add 1a55d9b [FLINK-20455][build] Move notice checking into separate class
add 59ae840 [FLINK-20455][build][legal] Add jar license checker
No new revisions were added by this update.
Summary of changes:
flink-connectors/flink-connector-kafka/pom.xml | 4 +
flink-connectors/flink-connector-kinesis/pom.xml | 2 +
flink-examples/flink-examples-batch/pom.xml | 16 +
flink-examples/flink-examples-streaming/pom.xml | 20 +-
flink-examples/flink-examples-table/pom.xml | 18 +
.../resources/{ => META-INF}/licenses/LICENSE.jdom | 0
flink-metrics/flink-metrics-influxdb/pom.xml | 8 +
.../src/main/resources/META-INF/NOTICE | 8 +
.../flink-statebackend-rocksdb/pom.xml | 2 +
flink-table/flink-table-planner-blink/pom.xml | 2 +
flink-table/flink-table-planner/pom.xml | 2 +
tools/ci/compile.sh | 10 +-
tools/ci/java-ci-tools/pom.xml | 10 +
.../tools/ci/licensecheck/JarFileChecker.java | 156 ++++++++
.../tools/ci/licensecheck/LicenseChecker.java | 290 +-------------
...{LicenseChecker.java => NoticeFileChecker.java} | 31 +-
.../tools/ci/licensecheck/JarFileCheckerTest.java | 444 +++++++++++++++++++++
tools/ci/license_check.sh | 3 +-
18 files changed, 714 insertions(+), 312 deletions(-)
rename flink-filesystems/flink-oss-fs-hadoop/src/main/resources/{ =>
META-INF}/licenses/LICENSE.jdom (100%)
create mode 100644
tools/ci/java-ci-tools/src/main/java/org/apache/flink/tools/ci/licensecheck/JarFileChecker.java
copy
tools/ci/java-ci-tools/src/main/java/org/apache/flink/tools/ci/licensecheck/{LicenseChecker.java
=> NoticeFileChecker.java} (90%)
create mode 100644
tools/ci/java-ci-tools/src/test/java/org/apache/flink/tools/ci/licensecheck/JarFileCheckerTest.java