avi-sanwal commented on code in PR #27209:
URL: https://github.com/apache/flink/pull/27209#discussion_r2508090648
##########
tools/ci/flink-ci-tools/src/main/java/org/apache/flink/tools/ci/licensecheck/JarFileChecker.java:
##########
@@ -206,6 +206,10 @@ private static int findNonBinaryFilesContainingText(
// dual-licensed under GPL 2 and CDDL 1.1
// contained in hadoop/presto S3 FS and flink-dist
.filter(path -> !pathStartsWith(path,
"/META-INF/versions/11/javax/xml/bind"))
+ // contained in flink-s3-fs-presto
+ .filter(path -> !pathStartsWith(path, "/com/sun/el"))
+ // contained in flink-s3-fs-presto
+ .filter(path -> !pathStartsWith(path, "/META-INF/LGPL2.1"))
Review Comment:
Not sure LGPL2.1 can be excluded from checks:
https://www.apache.org/legal/resolved.html#category-x
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]