我在本地存储库中遇到了 maven 依赖项的问题。
SBT 找不到。已经将日志级别设置为调试,但没有得到任何新内容。
这些文件在存储库中。我将粘贴路径从控制台复制到文件资源管理器,它们就在那里。
输出:
[debug] trying file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0.0/naggati-2.0.0.pom
[debug] tried file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0.0/naggati-2.0.0.pom
[debug] Local Maven Repository: resource not reachable for com/twitter#naggati;2.0.0: res=file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0
.0/naggati-2.0.0.pom
[debug] trying file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0.0/naggati-2.0.0.jar
[debug] tried file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0.0/naggati-2.0.0.jar
[debug] Local Maven Repository: resource not reachable for com/twitter#naggati;2.0.0: res=file://c:/Users/userz/.m2/repository/com/twitter/naggati/2.0
.0/naggati-2.0.0.jar
[debug] Local Maven Repository: no ivy file nor artifact found for com.twitter#naggati;2.0.0
编辑:我在项目/构建中使用 scala 文件添加了路径,如http://code.google.com/p/simple-build-tool/wiki/LibraryManagement中所述
“如果您将其添加为存储库,sbt 可以搜索您的本地 Maven 存储库:”
val mavenLocal = "Local Maven Repository" at "file://"+Path.userHome+"/.m2/repository"
这使得 sbt 在本地存储库中查找。之前没有。
所以 scala 文件看起来像这样:
import sbt._
class Foo(info: ProjectInfo) extends DefaultProject(info) {
val mavenLocal = "Local Maven Repository" at "file://c:/Users/userz/.m2/repository"
}
(我硬编码 Path.userHome 以排除可能的错误原因。正如预期的那样,它没有改变任何东西)。