2016-02-03 11:21:55 -05:00
|
|
|
File checkstyleSuppressions = file('checkstyle_suppressions.xml')
|
|
|
|
subprojects {
|
|
|
|
tasks.withType(Checkstyle) {
|
2016-02-05 06:15:29 -05:00
|
|
|
inputs.file(checkstyleSuppressions)
|
2016-02-03 11:21:55 -05:00
|
|
|
// Use x-pack specific suppressions file rather than the open source one.
|
|
|
|
configProperties = [
|
|
|
|
suppressions: checkstyleSuppressions
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|