Joda Time deposunu SBT'ye ekliyorum
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.1"
)
Sonra neşeyle böyle kullanıyorum:
val ymd = org.joda.time.format.DateTimeFormat.forPattern("yyyyMMdd")
ymd.parseDateTime("20121212")
Ancak, projeyi SBT'de derlediğimde, kötü bir sonuç alıyorum:
[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)
Joda-time'ın 2.0 sürümünü denedim, ancak aynı hatayı alıyorum.