我在我的CircleCI版本中收到此错误。
* What went wrong:
Could not resolve all dependencies for configuration ':compileClasspath'.
> Could not find com.monederobingo:libs:0.0.1.
Required by:
project :
com.monederobingo:libs:0.0.1
是一个仅存在于我的本地maven .m2
目录中的库。
我在gradle.config
中指定了此依赖关系。
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
...
compile 'com.monederobingo:libs:0.0.1'
}
有没有办法在CircleCI构建中包含此jar
?
更新:我尝试使用以下步骤在项目中加入jar
:https://discuss.gradle.org/t/how-to-include-dependencies-in-jar/19571/5
但是,我在Circle CI
版本中仍然遇到同样的错误。