0

I am having trouble attaching the source for the mongodb casbah library in eclipse. I couldn't find a source jar anywhere, so I downloaded the source from github, but I didn't know what the appropriate branch/version would be, so I just used the latest from master -- I suspect that's my problem.

I am working on a play project and my Build.scala file contains this:

"org.mongodb" %% "casbah" % "2.6.1"
Bjorn Roche
  • 11,279
  • 6
  • 36
  • 58

1 Answers1

0

Due to how casbah is packaged and split up there is a parent transparent pom file which just lists the casbah module dependencies. As this doesn't play nice with ide's there is now an all dependencies jar.

For more information see the casbah documentation - add that to your library / sources path and you should be good to go.

Ross
  • 17,861
  • 2
  • 55
  • 73