apply plugin: 'checkstyle' checkstyle { toolVersion = "8.38" configDirectory = file("${project.rootDir}/styleguide") config = resources.text.fromFile(new File(configDirectory.get().getAsFile(), "checkstyle.xml")) } if (!project.hasProperty('skipPMD')) { apply plugin: 'pmd' pmd { toolVersion = '6.7.0' consoleOutput = true reportsDir = file("$project.buildDir/reports/pmd") ruleSetFiles = files(new File(rootDir, "styleguide/pmd-ruleset.xml")) ruleSets = [] } } task javaFormat { dependsOn(tasks.withType(Checkstyle)) dependsOn(tasks.withType(Pmd)) }