PMD: Do all java files like checkstyle

Not just the org.fdroid.* classes. No changes needed.
This commit is contained in:
Daniel Martí 2016-04-13 13:18:20 +01:00
parent 158668f378
commit db798afb67

View File

@ -218,7 +218,7 @@ task pmd(type: Pmd, dependsOn: assembleDebug) {
//'java-unnecessary', // too nitpicky with parenthesis //'java-unnecessary', // too nitpicky with parenthesis
] ]
source 'src/main/java' source 'src/main/java'
include '**/org/fdroid/**/*.java' include '**/*.java'
} }
// This person took the example code below from another blogpost online, however // This person took the example code below from another blogpost online, however