Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-03-08 07:58:20 +0000
committerUwe Stieber2012-03-08 07:58:20 +0000
commita91e1cf567e0c3633690533ccddc8961ab016a97 (patch)
treecb1a8b5167b5da5c80f6647f1de9bdfc34cd7052 /pom.xml
parent19e7154581af604da90afddf3d3127fc25351ec5 (diff)
downloadorg.eclipse.tcf-a91e1cf567e0c3633690533ccddc8961ab016a97.tar.gz
org.eclipse.tcf-a91e1cf567e0c3633690533ccddc8961ab016a97.tar.xz
org.eclipse.tcf-a91e1cf567e0c3633690533ccddc8961ab016a97.zip
Maven: Move findbugs data collection into a profile to have the standard builds running without findbugs
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml36
1 files changed, 16 insertions, 20 deletions
diff --git a/pom.xml b/pom.xml
index 24310913d..ebb571178 100644
--- a/pom.xml
+++ b/pom.xml
@@ -197,26 +197,6 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>${findbugs-maven-version}</version>
- <configuration>
- <encoding>UTF-8</encoding>
- <effort>Max</effort>
- <threshold>Low</threshold>
- <xmlOutput>true</xmlOutput>
- <failOnError>false</failOnError>
- <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
<pluginManagement>
<plugins>
@@ -287,4 +267,20 @@
</plugins>
</pluginManagement>
</build>
+
+
+ <profiles>
+ <profile>
+ <id>findbugs</id>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top