We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebbb3c commit dd42030Copy full SHA for dd42030
src/main/groovy/com/marklogic/gradle/task/tasks/DeleteAllTasksTask.groovy
@@ -8,6 +8,11 @@ class DeleteAllTasksTask extends MarkLogicTask {
8
9
@TaskAction
10
void deleteAllTasks() {
11
+ String group = "Default"
12
+ if (project.hasProperty("mlGroupName")) {
13
+ group = project.property("mlGroupName")
14
+ }
15
+ println "Deleting all scheduled tasks in group: " + group
16
new TaskManager(getManageClient()).deleteAllScheduledTasks()
17
}
18
0 commit comments