I haven't worked with java/scala a lot, so my problem might be very obvious, but here it is:
I'm working on a scala program, and I want to import from a .jar file (filename.jar) in a sub-directory. I figure that this will work:
import sub.filename._
But I get the error: "Object filename is not a member of package sub."
So I try simply moving the jar file to the same directory as the scala program:
import filename._
And I get: "not found: object filename"
I'd appreciate any help.