aboutsummaryrefslogtreecommitdiffstats
path: root/fop-core/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'fop-core/pom.xml')
-rw-r--r--fop-core/pom.xml21
1 files changed, 12 insertions, 9 deletions
diff --git a/fop-core/pom.xml b/fop-core/pom.xml
index 794ce86e5..22d921dc3 100644
--- a/fop-core/pom.xml
+++ b/fop-core/pom.xml
@@ -312,15 +312,17 @@
<suppressionsLocation>${project.baseUri}src/tools/resources/checkstyle/suppressions.xml</suppressionsLocation>
<violationSeverity>warning</violationSeverity>
</configuration>
- <executions>
- <execution>
- <id>validate</id>
- <phase>validate</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
+ </plugin>
+ <!-- code analysis - checkstyle -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>${findbugs.plugin.version}</version>
+ <configuration>
+ <excludeFilterFile>src/tools/resources/findbugs/exclusions.xml</excludeFilterFile>
+ <effort>Max</effort>
+ <threshold>Low</threshold>
+ </configuration>
</plugin>
</plugins>
<resources>
@@ -374,4 +376,5 @@
</build>
</profile>
</profiles>
+
</project>