无法解析配置':compileClasspath'的所有依赖项。在CircleCI构建中查找jar内的依赖项

时间:2017-06-09 01:52:34

标签: java gradle maven-plugin circleci

我在我的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

更新:我尝试使用以下步骤在项目中加入jarhttps://discuss.gradle.org/t/how-to-include-dependencies-in-jar/19571/5

但是,我在Circle CI版本中仍然遇到同样的错误。

0 个答案:

没有答案