You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2013/07/06 09:00:20 UTC

svn commit: r1500215 - /mahout/trunk/pom.xml

Author: sslavic
Date: Sat Jul  6 07:00:20 2013
New Revision: 1500215

URL: http://svn.apache.org/r1500215
Log:
Moved findbugs configuration from sourcechecks profile to default configuration, so that same configuration gets used on ad-hoc findbugs:findbugs runs, like one in MahoutQuality build job

Modified:
    mahout/trunk/pom.xml

Modified: mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/pom.xml?rev=1500215&r1=1500214&r2=1500215&view=diff
==============================================================================
--- mahout/trunk/pom.xml (original)
+++ mahout/trunk/pom.xml Sat Jul  6 07:00:20 2013
@@ -698,6 +698,18 @@
             <version>${project.version}</version>
           </dependency>
         </dependencies>
+        <configuration>
+          <xmlOutput>true</xmlOutput>
+          <threshold>Low</threshold>
+          <effort>Default</effort>
+          <!--visitors>FindDeadLocalStores,UnreadFields</visitors-->
+          <!--omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors-->
+          <debug>true</debug>
+          <relaxed>true</relaxed>
+          <!-- classpath -->
+          <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
+          <failOnError>false</failOnError>
+        </configuration>
       </plugin>
     </plugins>
     <resources>
@@ -854,18 +866,6 @@
                 <goals>
                   <goal>check</goal>
                 </goals>
-                <configuration>
-                  <xmlOutput>true</xmlOutput>
-                  <threshold>Low</threshold>
-                  <effort>Default</effort>
-                  <!--visitors>FindDeadLocalStores,UnreadFields</visitors-->
-                  <!--omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors-->
-                  <debug>true</debug>
-                  <relaxed>true</relaxed>
-                  <!-- classpath -->
-                  <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
-                  <failOnError>false</failOnError>
-                </configuration>
               </execution>
             </executions>
           </plugin>