From db798afb6724d813c625020e839ee89bee75a9f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Wed, 13 Apr 2016 13:18:20 +0100 Subject: [PATCH] PMD: Do all java files like checkstyle Not just the org.fdroid.* classes. No changes needed. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 168b59458..5b14b193a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -218,7 +218,7 @@ task pmd(type: Pmd, dependsOn: assembleDebug) { //'java-unnecessary', // too nitpicky with parenthesis ] source 'src/main/java' - include '**/org/fdroid/**/*.java' + include '**/*.java' } // This person took the example code below from another blogpost online, however