{ "name": "gradle", "batchImplementation": "./src/executors/gradle/gradle-batch.impl", "implementation": "/packages/gradle/src/executors/gradle/gradle.impl.ts", "schema": { "$schema": "https://json-schema.org/schema", "version": 2, "title": "Gradle Impl executor", "description": "The Gradle Impl executor is used to run Gradle tasks.", "type": "object", "properties": { "taskName": { "type": "string", "description": "The name of the Gradle task to run." }, "testClassName": { "type": "string", "description": "The test class name to run for test task." }, "args": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ], "description": "The arguments to pass to the Gradle task.", "examples": [["--warning-mode", "all"], "--stracktrace"] } }, "required": ["taskName"], "presets": [] }, "description": "The Gradlew executor is used to run Gradle tasks.", "aliases": [], "hidden": false, "path": "/packages/gradle/src/executors/gradle/schema.json", "type": "executor" }