I have not worked with java / scala a lot, so my problem can be very obvious, but here it is:
I am working on a scala program and I want to import from a .jar file (filename.jar) into a subdirectory. I believe this will work:
import sub.filename._
But I get an error: "The file name of the object is not a member of the package."
So I'm trying to just move the jar file to the same directory as the scala program:
import filename._
And I get: "not found: object filename"
I would appreciate any help.
source share