我的java项目需要一些retrofit2依赖项。 在build.gradle中声明了其他存储库:
repositories
{
jcenter()
mavenCentral()
mavenLocal()
}
在依赖关系部分,我宣布:
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-jackson:2.1.0'
所以Gradle找不到它们。 我使用项目报告插件来分析依赖树。我收到了下一份报告:
有趣的是,在我使用2.0.2版本进行改造库之前,Gradle找到了它们。
任何帮助将不胜感激。
Gradle版本2.12
答案 0 :(得分:0)
If using IntelliJ you can include plugin idea or include plugin eclipse, which gives you an option to run gradle idea
or gradle eclipseClasspath
tasks and refresh the project with updated/freshly added dependencies.
IDE's are not yet ideal supporting gradle.