I am adding the Joda Time repository to SBT with
libraryDependencies ++= Seq( "joda-time" % "joda-time" % "2.1" )
Then I have fun using it like this:
val ymd = org.joda.time.format.DateTimeFormat.forPattern("yyyyMMdd") ymd.parseDateTime("20121212")
But, when I compile the project in SBT, I get the nasty:
[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)
I tried joda version 2.0 but getting the same error.
scala jodatime sbt
Jack Dec 13 '12 at 9:00 2012-12-13 09:00
source share