[weld-commits] Weld SVN: r6399 - core/trunk/impl.
weld-commits at lists.jboss.org
weld-commits at lists.jboss.org
Thu Jun 3 10:30:32 EDT 2010
Author: pete.muir at jboss.org
Date: 2010-06-03 10:30:31 -0400 (Thu, 03 Jun 2010)
New Revision: 6399
Modified:
core/trunk/impl/pom.xml
Log:
move findbugs to a profile
Modified: core/trunk/impl/pom.xml
===================================================================
--- core/trunk/impl/pom.xml 2010-06-03 14:26:51 UTC (rev 6398)
+++ core/trunk/impl/pom.xml 2010-06-03 14:30:31 UTC (rev 6399)
@@ -168,31 +168,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.1</version>
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- </dependencies>
- <configuration>
- <effort>Max</effort>
- <threshold>Default</threshold>
- <xmlOutput>true</xmlOutput>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
@@ -210,6 +185,37 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>findbugs</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>2.3.1</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <effort>Max</effort>
+ <threshold>Default</threshold>
+ <xmlOutput>true</xmlOutput>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<scm>
More information about the weld-commits
mailing list