mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 05:55:51 +00:00
Added plugin to additional places
This commit is contained in:
parent
5566645159
commit
67f1d541cc
1 changed files with 33 additions and 0 deletions
33
pom.xml
33
pom.xml
|
@ -296,6 +296,39 @@
|
|||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
|
||||
<!-- FindBug plugin for Static code analysis -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.3</version>
|
||||
<configuration>
|
||||
<failOnError>false</failOnError>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- PMD plugin for Static code analysis -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.10.0</version>
|
||||
<configuration>
|
||||
<linkXref>true</linkXref>
|
||||
<sourceEncoding>utf-8</sourceEncoding>
|
||||
<minimumTokens>100</minimumTokens>
|
||||
<targetJdk>1.8</targetJdk>
|
||||
<excludes>
|
||||
<exclude>**/generated/*.java</exclude>
|
||||
</excludes>
|
||||
<excludeRoots>
|
||||
<excludeRoot>target/generated-sources/stubs</excludeRoot>
|
||||
</excludeRoots>
|
||||
<failOnViolation>false</failOnViolation> <!-- this is actually true by default, but can be disabled -->
|
||||
<printFailingErrors>true</printFailingErrors>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue