Hi,

> What tool are you using to find the licenses that are not listed ?

Noting special, just find + grep. I generally do something like this, piped to 
a couple of grep -v’s to remove noise where needed:
find . -name "*.*" -exec grep “BSD" {} \; -print
find . -name "*.*" -exec grep “GPL" {} \; -print
find . -name "*.*" -exec grep “MIT" {} \; -print
find . -name "*.*" -exec grep -i “copyright" {} \; -print
find . -name "*.*" -exec grep -i “license" {} \; -print

For jars (in binary releases) I usually just use  tar tf *.jar to see what 
inside, the package names point you in the right direction.

Thanks,
Justin
---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org

Reply via email to