We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a675c99 commit 1dc8888Copy full SHA for 1dc8888
1 file changed
scripts/checkCopyrightPresent.sh
@@ -9,6 +9,13 @@ for i in $(find "${repo_root}" -name pom.xml); do
9
if [[ "$i" == "${repo_root}/core/queryparser/sparql/JavaCC/"* ]]; then
10
continue
11
fi
12
+ if [[ "$i" == *"/target/"* ]]; then
13
+ target_parent="${i%%/target/*}"
14
+ if [[ -f "${target_parent}/pom.xml" ]]; then
15
+ echo "Skipping target dir pom: $i"
16
+ continue
17
+ fi
18
19
echo $i;
20
# only look in non test files but make sure src/main exists.
21
# and not in package-info
0 commit comments