diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml index da0af6eb18489c1c908fe954eeab05fe6b3c32be..f0848d47247b7d27ed7462edeb069df42676592d 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>