2016-11-21 140 views
0

我已經加入了resolvers += Resolver.mavenLocal the plugins.sbt文件但是sbt似乎只能解析~/.ivi而不是~/.m2存儲庫。我該如何改變它?sbt本地m2存儲庫

我想這很好,但它似乎沒有工作

解析器+ = 「本地M2Y」 在Path.userHome.asFile.toURI.toURL + 「.m2目錄/庫」

編輯

錯誤消息 enter image description here 但該文件是有 enter image description here

+0

您是否閱讀過http://stackoverflow.com/questions/10773319/sbt-doesnt-find-file-in-local-maven-repository-although-its-there?rq=1並在嘗試過三次斜槓'file:' – manuzhang

回答

1

試試這個:

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

不幸的是,這似乎並沒有成功。我更新了帖子,以反映文件在m2文件夾中的錯誤消息/證據。奇怪的是,MavenLocal解析器在我的Mac上工作得很好 - 但顯然不是在Linux上。 –