diff options
author | Glenn Adams <gadams@apache.org> | 2016-03-31 16:42:09 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2016-03-31 16:42:09 +0000 |
commit | 6888fd9ce356578de3ac193e8992559fc1005f2a (patch) | |
tree | 102c9f7fcb9a676e07afef534ab99d2fde713ea0 /fop-core | |
parent | 7481c89616fff950ba736bf2233720d2d932ab55 (diff) | |
download | xmlgraphics-fop-6888fd9ce356578de3ac193e8992559fc1005f2a.tar.gz xmlgraphics-fop-6888fd9ce356578de3ac193e8992559fc1005f2a.zip |
Revert CS/FB changes to build plugins, leave runFindbugs profile in place.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1737257 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop-core')
-rw-r--r-- | fop-core/pom.xml | 21 |
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> |