From c630689a65ca119fd4f1728d20774db93bf996d5 Mon Sep 17 00:00:00 2001 From: nie <nie@informatik.uni-kiel.de> Date: Sat, 18 Feb 2012 00:47:38 +0100 Subject: [PATCH] Added the quality tools again. --- Kieker.WebGUI/pom.xml | 56 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml index da0af6eb..f0848d47 100644 --- a/Kieker.WebGUI/pom.xml +++ b/Kieker.WebGUI/pom.xml @@ -247,7 +247,61 @@ <build> <plugins> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.9</version> + <configuration> + <configLocation>quality-config/cs-conf.xml</configLocation> + </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>checkstyle</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.4.0</version> + <configuration> + <effort>Max</effort> + <threshold>Low</threshold> + <excludeFilterFile>quality-config/fb-filter.xml</excludeFilterFile> + </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>findbugs</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>2.7</version> + <configuration> + <rulesets> + <ruleset> + quality-config/pmdrules.xml + </ruleset> + </rulesets> + <targetJdk>1.6</targetJdk> + </configuration> + <executions> + <execution> + <phase>test</phase> + <goals> + <goal>pmd</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> -- GitLab