我将一些自定义jar发布到~/.ivy2/local
(使用scala构建工具:SBT)
我想在另一个gradle项目中使用它,并添加了依赖项:
compiile("com.my:custom_jar_2.11:0.1")
但是当我运行gradle test
时,gradle无法找到它:
Could not find com.my:custom_jar_2.11:0.1
我认为gradle默认使用~/.ivy/local2
,但似乎没有。
我是否需要配置一些东西(没有硬编码绝对路径)?
答案 0 :(得分:2)
您是否为本地仓库指定了存储库条目?
repositories {
ivy {
// URL can refer to a local directory
url "../local-repo"
}
}
本教程中提供的所有内容。 http://gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html