Skip to content

Instantly share code, notes, and snippets.

View dpreussler's full-sized avatar

Danny Preussler dpreussler

View GitHub Profile
apply plugin: 'checkstyle'
apply plugin: 'pmd'
task checkstyle(type: ParallelCheckstyle) {
configFile file("${project.rootDir}/config/checkstyle/checkstyle.xml")
source 'src/main/java'
include '**/*.java'
classpath = files()