I'm getting this error:
[warn] Class org.joda.convert.FromString not found - continuing with a stub.
But in build.sbt it's explicitly included:
libraryDependencies += "joda-time" % "joda-time" % "2.9.6"
libraryDependencies += "org.joda" % "joda-convert" % "1.8.1"
and that seems to be the fix for most people having this issue, eg. Class broken error with Joda Time using Scala . Running dependency graph I see evictions:
[info] +-joda-time:joda-time:2.3 (evicted by: 2.9.6)
[info] +-joda-time:joda-time:2.8.2 (evicted by: 2.9.6)
[info] +-joda-time:joda-time:2.9.6
[info] +-org.joda:joda-convert:1.8.1
[info] +-org.scala-lang.modules:scala-xml_2.11:1.0.5 [S]
[info]
[success] Total time: 10 s, completed May 11, 2017 6:38:09 PM
but it seems that in the end the latest versions win and looks like convert is included. Tests run fine and date conversions as well.
Right now, I'm at a bit of a loss.. How should I fix this / debug this in sbt?