This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a change to branch release-1.12
in repository https://gitbox.apache.org/repos/asf/flink.git.
from beb08a2 [FLINK-20429][kafka] Using proper watermark interval in
KafkaTableITCase#testKafkaTemporalJoinChangelog test
new 39f9e83 [FLINK-20455][oss][legal] Move license to META-INF directory
new 7689ffd [FLINK-20455][influxdb][legal] Inline notice
new c1fdd5f [FLINK-20455][table][legal] Exclude icu4j LICENSE file
new 094fa46 [FLINK-20455][build][legal] Bundle LICENSE/NOTICE in various
deployed jars
new 32a08f4 [FLINK-20455][build] Move notice checking into separate class
new 1f184e6 [FLINK-20455][build][legal] Add jar license checker
The 6 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:
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