当我试图为我的gradle项目运行idea插件时,我的一些intellij库与Library: 'gradle: unresolved_dependency_blah_blah' has broken classes path
出错了。库本身被标记为“未解析的依赖”
我的gradle项目是一个多模块,我已将构思插件应用于allprojects
。
Intellij版本是#IU-134.1007
gradle版本是1.11
任何帮助都将不胜感激。
UPDATE:这些是我所拥有的一些依赖项的示例:
apply plugin: 'groovy'
dependencies {
compile 'org.eclipse.jgit:org.eclipse.jgit:3.2.0.201312181205-r'
compile 'org.codehaus.groovy:groovy:2.2.1'
testCompile 'org.junit:junit:4.11'
}
这三个都有错误
答案 0 :(得分:7)
...解决
问题是我没有声明任何存储库。 (谢谢彼得)
将以下内容添加到我的根项目中正确解析了依赖项:
allprojects {
repositories { mavenCentral() }
}