I am a newbie to Scala and I wanted to add an external JAR file into the program and use it's functions.
So what I did was copied the JAR into lib
folder and then added the below line as well in my SBT file:
unmanagedBase := baseDirectory.value / "lib"
I followed this post Link For Similar Question
After this, when I import the class I find a class not found error. I am not sure why it is throwing a class not found when I added the jar into the lib
folder.
Any help is appreciated.