From 0992e7f6cf7048e65c950718ddd3eb4b60762a13 Mon Sep 17 00:00:00 2001 From: Sanjeev435 Date: Tue, 9 Oct 2018 17:37:37 +0530 Subject: [PATCH] Added PMD CheckStyle and FindBugs plugin for reporting --- pom.xml | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/pom.xml b/pom.xml index 33afa339d..006bf9bac 100644 --- a/pom.xml +++ b/pom.xml @@ -232,6 +232,68 @@ + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + + + checkstyle + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.3 + + + failing-on-high + install + + findbugs + + + false + true + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.10.0 + + true + utf-8 + 100 + 1.8 + + **/generated/*.java + + + target/generated-sources/stubs + + false + true + + + + + check + + + +