I've currently spent the best part of my day grappling with dependency hell; something I haven't really experienced in a while. I'm attempting to use Scala 2.8.0 as per the answers to this question, and the fact that I intend to use Actors - for which the fork/join pool seems to be faster (according to community buzz, anyhow).
The problem I'm facing is the supporting toolchain: I'd like to use configgy and querulous for configuration management and database abstraction, respectively. I cannot for the life of me find versions of these libraries that support 2.8.0.RC6; or at least, not versions that I can get working.
I tried the semi-official branch of configgy, but that hasn't been updated since Beta1. I also tried ijuma's fork, but that's still on 1.4.3. I've just noticed jboyen's fork, which appears to be up to date, so I'll give that a go when I get home tonight.
For querulous, I found a 2.8 fork, but that then spiralled into its own set of dependency problems with the advent of xrayspecs and configgy both being required.
Am I looking in the wrong place? I can't find up-to-date versions of these libraries in the scala-tools nexus, nor in any other maven repositories. I'd much prefer to use 2.8.0 over 2.7.7, but at this point in time I'm ready to fall back on stable and forward-port my code at a later date (which is a bit of a pain in the ass, given how close 2.8.0 is).
I guess the questions are: can anyone advise me where I might be able to find 2.8.0 compatible versions of these libraries please? And while RC6 is out now, is anyone able to offer a ballpark (weeks/months?) prediction as to when 2.8.0 will go final?
Thanks in advance for any help offered.