diff --git a/NOTICE.txt b/NOTICE.txt index eb425521..188332f4 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,4 +1,4 @@ -Apache SQOOP +Apache Sqoop Copyright 2011 The Apache Software Foundation This product includes software developed at diff --git a/lib/hadoop-mrunit-0.20.2-CDH3b2-SNAPSHOT.jar b/lib/hadoop-mrunit-0.20.2-CDH3b2-SNAPSHOT.jar deleted file mode 100644 index a6490b55..00000000 Binary files a/lib/hadoop-mrunit-0.20.2-CDH3b2-SNAPSHOT.jar and /dev/null differ diff --git a/src/scripts/rat-violations.sh b/src/scripts/rat-violations.sh index 1cfbc150..268d8049 100755 --- a/src/scripts/rat-violations.sh +++ b/src/scripts/rat-violations.sh @@ -45,9 +45,11 @@ sed -i -e "s|${basedir}||" ${auditlog} # Exclude paths that don't count. # Anything in /docs is auto-generated. # Anything in /testdata is a file that is supposed to represent exact output. +# Change log does not need a license. grep '!?????' ${auditlog} \ | grep -v ' \/docs\/' \ | grep -v ' \/testdata\/' \ + | grep -v ' \/CHANGES.txt' \ > ${filtered} # Check: did we find any violations after filtering?