I have a case where I need to a jar file located in root folder of the project.
"ccp.mts.test" % "mts-test_2.12-0.2" % "2.0" from "/mts-test_2.12-0.2.jar"
It did not work. Then I tried like below :
unmanagedJars in Compile += file("lib/mts-test_2.12-0.2.jar")
This also didn't work.
How can I do it?
You did not specify the
file
protocol. Try the followingEDIT
I am modifying my answer based on your comment.
In order to provide the absolute path, you can use the following code snippet