Gradle插件测试项目构建失败

时间:2018-04-23 02:38:47

标签: gradle

我从他们的github下载了gradle插件测试项目: https://github.com/gradle/gradle/tree/master/subprojects/docs/src/samples/customPlugin

我还将gradle更新为最新版本(4.7)。

当我gradle build consumer项目时,我收到以下构建错误:

  

失败:构建因异常而失败。

  • 出了什么问题: 配置根项目“使用者”时出现问题。
      

    无法解析配置':classpath'的所有工件。   找不到org.gradle:customPlugin:1.0-SNAPSHOT。    在以下位置搜索:        文件:/ C:/Code/gradle/subprojects/docs/src/samples/customPlugin/repo/org/gradle/customPlugin/1.0-SNAPSHOT/maven-   metadata.xml中        文件:/ C:/Code/gradle/subprojects/docs/src/samples/customPlugin/repo/org/gradle/customPlugin/1.0-SNAPSHOT/custom   插件-1.0-SNAPSHOT.pom        文件:/ C:/Code/gradle/subprojects/docs/src/samples/customPlugin/repo/org/gradle/customPlugin/1.0-SNAPSHOT/custom   插件-1.0-SNAPSHOT.jar    要求:        项目:

这里有什么问题?我想我不太了解gradle插件。插件是否需要以某种方式构建?我没有1.0-SNAPSHOT拍或任何类似的东西,这似乎是它的外观。

1 个答案:

答案 0 :(得分:1)

  

是否需要以某种方式构建插件?

是的,首先,否则layout-content项目将找不到它。

consumer项目中,只需运行plugin

然后在gradle uploadArchive项目

中重试gradle build