I'm trying to use querulous in a project. It compiles fine using sbt compile
but when I do sbt run
I get:
java.lang.NoClassDefFoundError: com/twitter/conversions/time
Any idea why this would happen?
Usually because the jar containing the class in question is on the classpath at compile time, but not at runtime. Investigate the -classpath
parameter when calling scala.