Is there any way of disabling the task but still r...
# gradle
s
Is there any way of disabling the task but still running all the tasks which depends on it?:)
m
Copy code
tasks.named("myTask") {
    enabled = false
}
2
n
or -x
gradle build -x jar