jnioche commented on issue #2890: Dependencies for using Pulsar in Storm 
topologies
URL: https://github.com/apache/pulsar/issues/2890#issuecomment-434264001
 
 
   Got it to work by excluding pulsar-client 
   
   ```
        <dependencies>
                <dependency>
                        <groupId>org.apache.pulsar</groupId>
                        <artifactId>pulsar-storm</artifactId>
                        <version>${pulsar.version}</version>
                        <exclusions>
                                <exclusion>
                                        <groupId>org.apache.pulsar</groupId>
                                        <artifactId>pulsar-client</artifactId>
                                </exclusion>
                        </exclusions>
                </dependency>
                <dependency>
                        <groupId>org.asynchttpclient</groupId>
                        <artifactId>async-http-client</artifactId>
                        <version>2.1.0-alpha26</version>
                </dependency>
        </dependencies>
   ```
   
   Either the dependencies of the Storm module or the documentation need 
fixing. Thanks!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to