I cloned a repository from GitHub to my local machine, changed it to fit my needs and now I'm going to use it in my project. I guess I must use .jar
file from it. However, there is no such a file.
Do I have to generate it myself?
Also, how do I refer to it? I don't want to copy it to /lib
folder for now because I keep working on the cloned project. As I found out I have to use this:
resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
However, I don't have the file build.sbt
, I only have file a plain scala file titled Build.scala
and it's not possible to use code above in it.
Also, it says /.m2/repository
, but how does it know where .jar
file is in this repository?