我从他们的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
拍或任何类似的东西,这似乎是它的外观。
答案 0 :(得分:1)
是否需要以某种方式构建插件?
是的,首先,否则layout-content
项目将找不到它。
在consumer
项目中,只需运行plugin
然后在gradle uploadArchive
项目
gradle build