java - gradle idea plugin: libraries marked as "unresolved dependencies" -
When trying to run the idea plugin for my gradle project, in my many internal libraries Library: 'shield: unresolved No - Dependence_bl_bla 'has broken the square path . Library has been marked as "unbalanced dependency"
I Gredre project multi-module, I consider plugin is applied to the
All projects .
Update: This is an example of a dependency to me:
plugin: 'groovy' dependence {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'} There are errors in all three
resolve ... < / P>
The issue was that I did not declare any repository. (Thanks peter)
Add the following to my original project went resolved correctly dependency:
All Project {repositories {mavenCentral ()}}
Comments
Post a Comment