问题标签 [buildsrc]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
40 浏览

gradle - 如何在 buildSrc 的任务中传递@Input String

这个自定义插件存在于 gradle 中buildSrc/

并通过运行例如$ ./gradlew myTask失败的任务:

prinln 输出也{buildDir=null}意味着inputs.property("buildDir", project.buildDir)失败。


如何project.buildDir从任务中的插件传递值?

由于 Gradle 的孵化构建缓存功能project.buildDir,直接从任务内部使用不是一个可接受的答案。

0 投票
0 回答
6 浏览

gradle - 诊断 Gradle 升级和 buildSrc 错误

我目前有一个问题,在尝试从 Gradle 6.9.3 切换到 7.3.3 后,我的:buildSrc:compileGroovy目标失败并出现NoClassDefFoundErroron LoggingManagerInternal,这是 Gradle 7 中删除的一个类。堆栈跟踪似乎没有指向项目代码。

诊断此问题的最佳方法是什么,它来自哪里以及如何解决?