Trying to connect to Mongo using Monger and I get the following error
CompilerException java.lang.ClassNotFoundException: org.bson.types
I have added the dependency [com.novemberain/monger "3.1.0"]
in project.clj and did a lein re-install and is trying to import bson.types as :import [org.bson.types ObjectId].
The monger dependency is reflecting in my auto generated pom.xml file as
<dependency> <groupId>com.novemberain</groupId> <artifactId>monger</artifactId> <version>3.1.0</version> </dependency> <dependency>
Am I missing any dependency or what am I doing wrong ? .