J'ajoute le référentiel Joda Time à SBT avec
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.1"
)
Ensuite, je l'utilise joyeusement comme ceci:
val ymd = org.joda.time.format.DateTimeFormat.forPattern("yyyyMMdd")
ymd.parseDateTime("20121212")
Mais, lorsque je compile le projet en SBT, je reçois un méchant:
[warn] Class org.joda.convert.FromString not found - continuing with a stub.
[warn] Caught: java.lang.NullPointerException while parsing annotations in /home/jack/.ivy2/cache/joda-time/joda-time/jars/joda-time-2.1.jar(org/joda/time/DateTime.class)
[error] error while loading DateTime, class file '/home/jack/.ivy2/cache/joda-time/joda-time/jars/joda-time-2.1.jar(org/joda/time/DateTime.class)' is broken
[error] (class java.lang.RuntimeException/bad constant pool tag 10 at byte 42)
J'ai essayé la version 2.0 de joda-time, mais j'obtiens la même erreur.