Github user HeartSaVioR commented on the issue:
https://github.com/apache/storm/pull/2549
@erikdw
"fix compilation issues due to storm-core" <== maybe my bad to explain
here, I don't fix something specific for compilation, but I was done
iterations: build -> found error -> found what I've missed from storm-core ->
apply -> build again. So the change should be actually along with
storm-kafka-client.
There're lots of of commits for storm-kafka-client, and I can't track and
apply one to one. If I should take that approach, then I can't make it such
easier and faster.
archiving module was really simple:
1. git checkout 1.x-branch
1. mvn clean
1. cd external
1. tar cvfz storm-kafka-client.tar.gz storm-kafka-client
1. mv storm-kafka-client.tar.gz ~
1. git checkout 1.1.x-branch
1. git checkout -b <branch>
1. cd external
1. rm -rf storm-kafka-client
1. tar xvfz storm-kafka-client.tar.gz
1. rm -rf storm-kafka-client.tar.gz
and start iteration...
---