sbt local m2 repository

时间:2016-11-21 12:49:20

标签: scala sbt

我已经添加了resolvers += Resolver.mavenLocal plugins.sbt文件但是sbt似乎只解析~/.ivi而不是~/.m2存储库。我怎么能改变它?

我也试过了,但似乎没有用

解析器+ =“本地m2y”在Path.userHome.asFile.toURI.toURL +“。m2 / repository”

修改

错误消息 enter image description here 但文件在那里 enter image description here

2 个答案:

答案 0 :(得分:2)

试试这个:

resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"

答案 1 :(得分:0)

如果您使用的是repositories文件,则可以将maven-locallocal一起添加。 参考-> https://www.scala-sbt.org/1.x/docs/Launcher-Configuration.html#3.+Repositories+Section