Varun Gupta
Varun Gupta

Reputation: 1457

could not resolve org.apache.zookeeper in curator-framework 2.9.1

I am using gradle build and added curator-framework 2.9.1 in external dependencies. When I build my code, it prompts error for missing org.apache.zookeeper.

When I opened MANIFEST.MF file for Gradle: org.apache.curator:curator-framework-2.9.1 in external libraries section of Intellij IDE, it prompts error for "could not resolve org.apache.zookeeper".

This only happens on my machine, for my colleagues it builds fine. This is for open source project dcos-cassandra-mesos.

Upvotes: 1

Views: 787

Answers (1)

Varun Gupta
Varun Gupta

Reputation: 1457

So, rather than pointing to gradle cache binaries, it was default pointing to .m2 repository on my local machine. Due to which it was not able to find zookeeper jar files.

Upvotes: 1

Related Questions