2

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?

dave
  • 12,406
  • 10
  • 42
  • 59

1 Answers1

1

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.

Chris Shain
  • 50,833
  • 6
  • 93
  • 125