Well, I did the following: curl -o tmp.html http://people.apache.org/~cziegeler/releases/felix/maven-scr-plugin-040/ && sed -e "s/.*href=\"//" -e "s/\".*//" -e "/</d" -e "/\//d" tmp.html | while read line; do curl -o $line "http://people.apache.org/~cziegeler/releases/felix/maven-scr-plugin-040/$line"; done && for file in *.md5; do sum=`cat $file`; target=`md5sum ${file%.md5} | sed -e "s/\ .*//"`; if [ $target != $sum ]; then echo "Bad ${file%.md5}"; fi; done && find . ! -name "*.asc" ! -name "*.md5" ! -name "*.sha1" ! -name "*.html" ! -name "KEYS" -type f | while read file; do if [ ! -e $file.md5 -o ! -e $file.asc ]; then echo "Bad $file"; fi; done && for arch in *.zip; do mkdir -p zip/${arch%.zip}-zip; cd zip/${arch%.zip}-zip; unzip ../../$arch; cd ../..; done && rat.sh zip && for arch in *.tar.gz; do mkdir -p tar/${arch%.tar.gz}-gz; cd tar/${arch%.tar.gz}-gz; tar xvfz ../../$arch; cd ../..; done && rat.sh tar && for jar in *.jar; do mkdir -p jar/${jar%.jar}-jar; cd jar/${jar%.jar}-jar; jar -xf ../../$jar; cd ../..; done && rat.sh jar
and the output looks good to me except maybe that you seem to have dependencies on some OSGi stuff and asm that are not noted in the NOTICE file. No showstopper but I think it is good practice to list your (external) dependencies. +1 for the release regards, Karl > We're (again) missing one vote. Anyone else? > > Thanks > Carsten > > Carsten Ziegeler wrote: > > Hi, > > > > since the last release of the maven-scr-plugin we fixed several bugs and > > did some enhancements. So I think its time to do a new release of the > > current version - it seems to be very stable now. > > > > I've compiled the release candidate and put it here: > > > > http://people.apache.org/~cziegeler/releases/felix/maven-scr-plugin-040/ > > > > The KEYS file for verifying the signature is also in this directory. > > > > So, please check the release and cast your votes. > > > > Thanks > > Carsten > > > > > -- > Carsten Ziegeler > [EMAIL PROTECTED] > -- Karl Pauls [EMAIL PROTECTED]
