-
Notifications
You must be signed in to change notification settings - Fork 32
/
licenseCheck.sh
executable file
·139 lines (116 loc) · 3.83 KB
/
licenseCheck.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
APPEND_ARG=""
FOLDER="./"
LINE_FLAG="=============================================="
TARGET_FILE="./license-list"
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
if [ -n "$1" ]; then
echo "checking module $1"
APPEND_ARG="-f $1"
FOLDER="$1"
else
echo "checking whole project"
fi
echo "Running command: mvn clean package -DskipTests=true -PlicenseCheck $APPEND_ARG"
mvn clean package -DskipTests=true -PlicenseCheck $APPEND_ARG
status=$?
if [ $status -eq 0 ]; then
echo "mvn command exec success"
else
echo "${red}mvn command exec fail${reset}"
exit 1
fi
#contact and generate license file
rm -rf $TARGET_FILE
LICENSE_FILES=`find $FOLDER -type f -name "THIRD-PARTY.txt"|grep generated-sources`
echo "Find license files:"
echo "$LICENSE_FILES"
for i in $LICENSE_FILES
do
echo "$LINE_FLAG" >> $TARGET_FILE
echo $i >> $TARGET_FILE
cat $i >> $TARGET_FILE
done
echo "license files generated at $TARGET_FILE"
#fix missing license dependencies
missingLicense=(
"(Unknown license) jsr173_api:(Apache License, Version 2.0) jsr173_api"
"(Unknown license) \"Java Concurrency in Practice\" book annotations:(BEA licensed) \"Java Concurrency in Practice\" book annotations"
"(Unknown license) Java Portlet Specification V2.0:(Apache License, Version 2.0) Java Portlet Specification V2.0"
)
for i in "${missingLicense[@]}"; do
search=`echo $i |awk -F: '{print $1}'`
replace=`echo $i |awk -F: '{print $2}'`
sed -i.bak 's/'"$search"'/'"$replace"'/g' $TARGET_FILE
done
if [ -f $TARGET_FILE.bak ]; then
rm -rf $TARGET_FILE.bak
fi
check_unknown_license=`cat $TARGET_FILE | grep "Unknown license"`
#checking unknown license
if grep -q "Unknown license" $TARGET_FILE
then
echo "${red}Find unknown license${reset}"
echo "$check_unknown_license"
#exit 1
fi
allowLicense=(
"CDDL"
"Apache"
"Common Development and Distribution License"
"Eclipse Public License"
"MIT"
"The 3-Clause BSD License"
"Public domain"
"JSR.*107"
"Common Public License Version 1.0"
"org.scijava:native-lib-loader"
"org.codehaus.woodstox:stax2-api"
"net.jcip:jcip-annotations",
"Mulan Permissive Software License"
"BSD"
"BSD 3-clause"
"BSD 2-clause"
"Eclipse Distribution License 2.0"
"The JDOM License"
"Dual-license"
"CPL"
"Mozilla v2"
"EPL"
"EPL-1.0 License"
"JSON License"
"Eclipse Distribution License - v 1.0"
"EDL 1.0"
)
#filter allow license
license_need_check=`cat $TARGET_FILE | grep -v "generated-sources/license/THIRD-PARTY.txt" | grep -v "third-party dependencies" | grep -v "The project has no dependencies." | grep -v $LINE_FLAG`
for i in "${allowLicense[@]}"; do
license_need_check=`echo "$license_need_check"|grep -vi "$i"`
done
# remove empty lines
echo $license_need_check | sed '/^[[:space:]]*$/d' > license-need-check
if [ ! -s license-need-check ]; then
echo "${green}All dependencies license looks good${reset}"
else
echo "${red}Please check below license${reset}"
cat license-need-check
fi
# rm -f license-list