Hi, I did some verification based on commit 034eb7bb37da7f1ecc3a9fee6c80b9b4d0251c36. What I did is run mvn -Prelease clean package, unzip the bin-release.zip file, and check whether all the dependencies under BOOT-INF/lib are listed in LICENSE.
What I found it that the following dependencies are not listed. cd BOOT-INF/lib for i in *.jar; do fgrep -in `echo $i | cut -d- -f1` ../../LICENSE > /dev/null; if [ "$?" -ne 0 ]; then echo $i; fi; done HikariCP-2.7.9.jar antlr-2.7.7.jar aspectjweaver-1.8.13.jar dom4j-1.6.1.jar httpclient-4.5.5.jar httpcore-4.4.9.jar jandex-2.0.3.Final.jar javassist-3.20.0-GA.jar javax.transaction-api-1.2.jar jcl-over-slf4j-1.7.25.jar On Fri, Mar 1, 2019 at 2:02 PM Minxuan Zhuang <[email protected]> wrote: > > Hello Dubbo Community, > because of the license issue in dubbo ops binary release[1], I only > release the source part for the first version, now this issue has been > fixed[2], please help me to check if the current licenses are correct, > thanks > > [1] > https://lists.apache.org/thread.html/98184c2d0c90b4abd2f6f1cfca11b84a4ec869d9ce7d6568d9a75dd4@%3Cgeneral.incubator.apache.org%3E > [2] > https://github.com/apache/incubator-dubbo-ops/commit/b797145214547616a6a02f6e9701178fc73d7ced -- Best Regards! Huxing
