当我在gradle中包含外部项目时,我遇到了以下问题(我使用的是Intellij IDEA)。
Could not resolve all dependencies for configuration ':build'.
> Could not find :<external-project>:.
Searched in the following locations:
file:/Users/<user>/.m2/repository//<external-project>//<external-project>-.pom
file:/Users/<user>/.m2/repository//<external-project>//<external-project>-.jar
我在settings.gradle中有以下行:
包括&#39;:&#39; project(&#39;:&#39;)。projectDir = new File(rootProject.projectDir,&#39; ../')
和build.gradle有:compile&#39;:external-project&#39;
个别两个项目都正常工作,但当我包括外部项目时,我遇到依赖问题。
答案 0 :(得分:1)
引用settings.gradle中添加的项目的正确方法是:
compile project(':external-project')