尝试:
gradle assemble
要列出项目的所有可用任务,请尝试:
gradle tasks
更新:
起初这似乎不是最正确的答案,但请仔细阅读gradle tasks
输出或文档。
Build tasks
-----------
assemble - Assembles the outputs of this project.
build - Assembles and tests this project.
可接受的答案是正确的。
OTOH,我之前解决此问题的方法是在所有项目中添加以下内容:
test.onlyIf { ! Boolean.getBoolean('skip.tests') }
-Dskip.tests=true
运行构建,所有测试任务将被跳过。