Github user revans2 commented on the pull request:
https://github.com/apache/storm/pull/736#issuecomment-141142255
@ptgoetz There were a number of issues.
We were shading dependencies of dependencies without shading the direct
dependency. This resulted in shaded classes leaking into user facing APIs.
We were not using the storm-core dependency reduced pom to build other
components (flux most notably). This resulted in flux assuming that
dependencies would be there when they were not.
We also were partially shading some of our clojure dependencies. Our
dependency clojure code was being compiled into .class files placed in our jar.
The packages for these dependencies were being shaded, but the maven dependency
was not listed, so it was not removed from the dependency reduced pom.
There are also some issues with the ClojureTransformer where it would not
correctly shade clojure code when the package name is split up in the .clj
file, so to work around that we removed the majority of .clj files from the
uber jar.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---