blob: e0919883a56fc877da7673624889fafa84734b6a [file] [log] [blame]
Brian Silverman41cdd3e2019-01-19 19:48:58 -08001
2apply plugin: 'checkstyle'
3apply plugin: 'pmd'
4
5checkstyle {
6 toolVersion = "8.12"
7 configDir = file("${project.rootDir}/styleguide")
8 config = resources.text.fromFile(new File(configDir, "checkstyle.xml"))
9}
10
11pmd {
12 toolVersion = '6.7.0'
13 consoleOutput = true
14 reportsDir = file("$project.buildDir/reports/pmd")
15 ruleSetFiles = files(new File(rootDir, "styleguide/pmd-ruleset.xml"))
16 ruleSets = []
17}