mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +00:00
3dfb38b99e
Original commit: elastic/x-pack-elasticsearch@8850f753c7
11 lines
309 B
Groovy
11 lines
309 B
Groovy
File checkstyleSuppressions = file('checkstyle_suppressions.xml')
|
|
subprojects {
|
|
tasks.withType(Checkstyle) {
|
|
inputs.file(checkstyleSuppressions)
|
|
// Use x-pack specific suppressions file rather than the open source one.
|
|
configProperties = [
|
|
suppressions: checkstyleSuppressions
|
|
]
|
|
}
|
|
}
|