当 gradle 构建任务是 运行 使用 Eclipse Buildship 插件时如何排除测试任务?

How to exclude test task when the gradle build task is run using Eclipse Buildship plugin?

我正在使用 Eclipse Buildship 插件在我的项目上执行 Gradle 任务。知道如何在构建任务为 运行 时排除测试任务吗?在 Gradle STS 插件中,我曾经将程序参数更新为“-x test”,从而跳过了测试任务。当我尝试使用 Buildship 进行相同操作时,出现以下错误。

* What went wrong:
Task ' test' not found in root project

您是否考虑过运行“assemble”任务而不是“构建”任务?

:build
+--- :assemble
|    \--- :jar
|         \--- :classes
|              +--- :compileJava
|              \--- :processResources
\--- :check
     \--- :test
          +--- :classes
          |    +--- :compileJava
          |    \--- :processResources
          \--- :testClasses
               +--- :compileTestJava
               |    \--- :classes
               |         +--- :compileJava
               |         \--- :processResources
               \--- :processTestResources

在 运行 配置中的程序参数中添加“-x 测试”

对我来说。我必须将“-x”和 'test' 放在不同的行上,BuildShip 才能工作。