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.
我有一个自定义 gradle 插件,比如 myPlugin,有一个任务,比如 myTask,它必须在构建开始之前验证并创建一个文件。如何确保 gradle 在任何其他插件的任何其他任务之前运行 myTask?
你不能为此使用任务。您可以使用挂钩,例如project.gradle.buildStarted { ... }.
project.gradle.buildStarted { ... }