Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正处于从复杂的 Maven 构建系统迁移到更简单的 Gradle 构建系统的早期阶段。不幸的是,我将一些我们自己的自定义 Maven 插件扩展放入 /buildSrc。
是否可以使用 Gradle 跳过内部 buildSrc 项目?此时我宁愿不构建此目录中的内容。
最终它将被我们自己的自定义 Gradle 插件所取代,但现在我最好完全跳过这个项目。
buildSrc目录一存在就会生成。所以最好的方法是删除或重命名该目录。
buildSrc
另一种选择是添加一个buildSrc/build.gradle包含tasks.all { enabled = false }. 不过,这与完全跳过该项目并不完全相同。
buildSrc/build.gradle
tasks.all { enabled = false }