in tools/ci/paimon-ci-tools/src/main/java/org/apache/paimon/tools/ci/licensecheck/JarFileChecker.java [57:61]
private static List<Path> getBuildJars(Path path) throws IOException {
return Files.walk(path)
.filter(file -> file.toString().endsWith(".jar"))
.collect(Collectors.toList());
}