From 14e84c5c53a3206774e42b754d09e27ef3488950 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Mon, 11 Aug 2014 21:34:05 +0200 Subject: [PATCH] PMD fix compatibility with Gradle 2.0 --- 03-checkstyle/build.gradle | 2 +- 04-findbugs/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/03-checkstyle/build.gradle b/03-checkstyle/build.gradle index b524138..9ebb849 100644 --- a/03-checkstyle/build.gradle +++ b/03-checkstyle/build.gradle @@ -15,7 +15,7 @@ test { } pmdMain { - ruleSets = [ "basic", "strings" ] + ruleSets = [ "java-basic", "java-strings" ] ignoreFailures = true } diff --git a/04-findbugs/build.gradle b/04-findbugs/build.gradle index 4f5b079..d2f7da4 100644 --- a/04-findbugs/build.gradle +++ b/04-findbugs/build.gradle @@ -18,7 +18,7 @@ test { } pmdMain { - ruleSets = [ "basic", "strings" ] + ruleSets = [ "java-basic", "java-strings" ] ignoreFailures = true }