我想在不执行单元测试的情况下执行grade构建。我尝试了:

$ gradle -Dskip.tests build

这似乎没什么用。还有其他命令可以使用吗?


当前回答

公认的答案是正确的。

OTOH,我之前解决这个问题的方法是在所有项目中添加以下内容:

test.onlyIf { ! Boolean.getBoolean('skip.tests') }

使用-Dskip.tests=true运行生成,将跳过所有测试任务。

其他回答

Try:

gradle assemble

要列出项目的所有可用任务,请尝试:

gradle tasks

更新:

起初,这似乎不是最正确的答案,但仔细阅读任务输出或文档。

Build tasks
-----------
assemble - Assembles the outputs of this project.
build - Assembles and tests this project.

在项目中禁用测试任务的不同方法是:

tasks.withType(Test) {enabled = false}

如果您想在一个项目(或一组项目)中禁用测试,有时需要这种行为。

这种方式适用于所有类型的测试任务,而不仅仅是java“测试”。而且,这种方式是安全的。这就是我的意思假设:您有一组不同语言的项目:如果我们尝试在main build.gradle中添加这种记录:

 subprojects{
 .......
 tests.enabled=false
 .......
}

如果我们没有名为测试的任务,我们将在项目中失败

参考

要从gradle中排除任何任务,请使用-x命令行选项。参见以下示例

task compile << {
    println 'task compile'
}

task compileTest(dependsOn: compile) << {
    println 'compile test'
}

task runningTest(dependsOn: compileTest) << {
    println 'running test'
}
task dist(dependsOn:[runningTest, compileTest, compile]) << {
    println 'running distribution job'
}

输出:gradle-q dist-x runningTest

task compile
compile test
running distribution job

希望这能给你基本的

您应该使用-x命令行参数来排除任何任务。

尝试:

gradle build -x test 

更新:

彼得评论中的链接发生了变化。这是Gradle用户指南中的图表

在Java插件中:

$ gradle tasks

Build tasks
-----------
assemble - Assembles the outputs of this project.
build - Assembles and tests this project.
testClasses - Assembles test classes.

Verification tasks
------------------
test - Runs the unit tests.

分级构建而不进行测试,您有两种选择:

$ gradle assemble
$ gradle build -x test

但如果您想要编译测试:

$ gradle assemble testClasses
$ gradle testClasses