Я додаю сховище Joda Time до SBT за допомогою
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.1"
)
Тоді я із задоволенням використовую це так:
val ymd = org.joda.time.format.DateTimeFormat.forPattern("yyyyMMdd")
ymd.parseDateTime("20121212")
Але, коли я складаю проект у SBT, я отримую неприємність:
[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)
Я спробував версію 2.0 joda-time, але отримав ту ж помилку.