lucene/gradle/validation/precommit.gradle

13 lines
284 B
Groovy
Raw Normal View History

// This adds top-level 'precommit' task.
// Validation tasks attach themselves to it in their own
// respective build scripts.
configure(rootProject) {
task precommit() {
group = 'Precommit'
description = "All precommit checks"
2020-01-03 15:53:29 +01:00
dependsOn verifyLocks
}
}