in tools/ci/paimon-ci-tools/src/main/java/org/apache/paimon/tools/ci/licensecheck/JarFileChecker.java [45:55]
public static int checkPath(Path path) throws Exception {
List<Path> files = getBuildJars(path);
LOG.info("Checking directory {} with a total of {} jar files.", path, files.size());
int severeIssues = 0;
for (Path file : files) {
severeIssues += checkJar(file);
}
return severeIssues;
}