Github user omkreddy commented on a diff in the pull request:
https://github.com/apache/storm/pull/2467#discussion_r158236749
--- Diff: external/storm-solr/pom.xml ---
@@ -46,19 +46,24 @@
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
- <version>5.2.1</version>
- <scope>compile</scope>
+ <version>5.5.5</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
--- End diff --
solr-solrj 5.5.5 depends on httpclient:jar:4.3.3. This is giving runtime
exceptions in Kerberos mode. So I updated httpclient:jar to 4.5.
---