|
|
|
@ -226,12 +226,37 @@
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId> |
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId> |
|
|
|
|
<version>2.3.2-SNAPSHOT</version> |
|
|
|
|
<configuration> |
|
|
|
|
<findbugsXmlOutput>true</findbugsXmlOutput> |
|
|
|
|
<failOnError>false</failOnError> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<goals> |
|
|
|
|
<goal>check</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId> |
|
|
|
|
<version>2.5</version> |
|
|
|
|
<configuration> |
|
|
|
|
<sourceEncoding>utf-8</sourceEncoding> |
|
|
|
|
<minimumTokens>100</minimumTokens> |
|
|
|
|
<targetJdk>1.5</targetJdk> |
|
|
|
|
<format>xml</format> |
|
|
|
|
<failOnViolation>false</failOnViolation> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<goals> |
|
|
|
|
<goal>cpd-check</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</pluginManagement> |
|
|
|
@ -361,6 +386,21 @@
|
|
|
|
|
<module>org.eclipse.jgit.console</module> |
|
|
|
|
</modules> |
|
|
|
|
</profile> |
|
|
|
|
<profile> |
|
|
|
|
<id>static-checks</id> |
|
|
|
|
<build> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.codehaus.mojo</groupId> |
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-pmd-plugin</artifactId> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
</profile> |
|
|
|
|
</profiles> |
|
|
|
|
|
|
|
|
|
<modules> |
|
|
|
|