Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-40899: [CI][Java] Check dependency licenses #40901

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions ci/scripts/java_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,49 @@ if [ "${ARROW_JAVA_CDATA}" = "ON" ]; then
${mvn} clean test -Parrow-c-data -pl c -Darrow.c.jni.dist.dir=${java_jni_dist_dir}
fi

echo "=== Checking third-party licenses ==="

${mvn} \
license:add-third-party \
-Dlicense.excludedScopes=provided,test \
-Dlicense.excludeTransitiveDependencies=true \
-Dlicense.failOnMissing=true \
-Dlicense.failIfWarning=true

set +x

# Ignore grep returning 1 on no match
function safegrep { grep "$@" || test $? = 1; }

fail=0
for report in $(find . -type f -name THIRD-PARTY.txt | sort); do
echo "=== Checking ${report} ==="
# Include-list of safe licenses. Allow javax.annotation since it is
# effectively a build-only dependency (annotations have no retention). This
# is used by gRPC and cannot yet be disabled, though this is coming
# (https://github.com/grpc/grpc-java/issues/9179)
bad_deps=$(cat "${report}" |
safegrep -v -e '^$' |
safegrep -v -E "Lists of.*dependencies" |
safegrep -v -E "The project has no dependencies" |
safegrep -v "javax.annotation:javax.annotation-api:1.3.2" |
safegrep -v "The Apache Software License, Version 2.0" |
safegrep -v "Apache License, Version 2.0" |
safegrep -v "Apache License V2.0" |
safegrep -v "Apache 2.0" |
safegrep -v "Apache-2.0" |
safegrep -v --fixed-strings "BSD 2-Clause License" |
safegrep -v --fixed-strings "BSD-3-Clause" |
safegrep -v "Bouncy Castle Licence" |
safegrep -i -v "MIT license" |
safegrep -v "Public Domain")
if [ -n "${bad_deps}" ]; then
echo "Found bad dependencies in ${report}:"
echo "${bad_deps}"
fail=$((fail + 1))
fi
done

popd

exit ${fail}
Loading