You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2008/04/30 16:42:35 UTC

svn commit: r652390 - in /commons/proper/configuration/branches/configuration2_experimental: conf/findbugs-exclude-filter.xml pom.xml

Author: ebourg
Date: Wed Apr 30 07:42:35 2008
New Revision: 652390

URL: http://svn.apache.org/viewvc?rev=652390&view=rev
Log:
Added the Findbugs report to the generated site
Moved PMD and CheckStyle in the report plugins section

Modified:
    commons/proper/configuration/branches/configuration2_experimental/conf/findbugs-exclude-filter.xml
    commons/proper/configuration/branches/configuration2_experimental/pom.xml

Modified: commons/proper/configuration/branches/configuration2_experimental/conf/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/conf/findbugs-exclude-filter.xml?rev=652390&r1=652389&r2=652390&view=diff
==============================================================================
--- commons/proper/configuration/branches/configuration2_experimental/conf/findbugs-exclude-filter.xml (original)
+++ commons/proper/configuration/branches/configuration2_experimental/conf/findbugs-exclude-filter.xml Wed Apr 30 07:42:35 2008
@@ -22,25 +22,25 @@
 <FindBugsFilter>
   <!-- Disable the warnings for the generated classes -->
   <Match>
-    <Class name="org.apache.commons.configuration.plist.ParseException"/>
+    <Class name="org.apache.commons.configuration2.plist.ParseException"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.PropertyListParser"/>
+    <Class name="org.apache.commons.configuration2.plist.PropertyListParser"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.PropertyListParserConstants"/>
+    <Class name="org.apache.commons.configuration2.plist.PropertyListParserConstants"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.PropertyListParserTokenManager"/>
+    <Class name="org.apache.commons.configuration2.plist.PropertyListParserTokenManager"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.SimpleCharStream"/>
+    <Class name="org.apache.commons.configuration2.plist.SimpleCharStream"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.Token"/>
+    <Class name="org.apache.commons.configuration2.plist.Token"/>
   </Match>
   <Match>
-    <Class name="org.apache.commons.configuration.plist.TokenMgrError"/>
+    <Class name="org.apache.commons.configuration2.plist.TokenMgrError"/>
   </Match>
 
   <!-- Enable only high priority warnings -->

Modified: commons/proper/configuration/branches/configuration2_experimental/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/pom.xml?rev=652390&r1=652389&r2=652390&view=diff
==============================================================================
--- commons/proper/configuration/branches/configuration2_experimental/pom.xml (original)
+++ commons/proper/configuration/branches/configuration2_experimental/pom.xml Wed Apr 30 07:42:35 2008
@@ -42,7 +42,7 @@
   <url>http://commons.apache.org/configuration/</url>
 
   <issueManagement>
-    <system>jira</system>
+    <system>JIRA</system>
     <url>http://issues.apache.org/jira/browse/CONFIGURATION</url>
   </issueManagement>
 
@@ -358,6 +358,25 @@
             <outputDirectory>src/main/java</outputDirectory>
           </configuration>
         </plugin>
+      </plugins>
+    </build>
+
+    <reporting>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <linksource>true</linksource>
+            <links>
+              <link>http://java.sun.com/javase/6/docs/api</link>
+              <link>http://java.sun.com/javaee/5/docs/api/</link>
+              <link>http://commons.apache.org/lang/apidocs/</link>
+              <link>http://commons.apache.org/jxpath/apidocs/</link>
+              <link>http://commons.apache.org/beanutils/apidocs/</link>
+            </links>
+          </configuration>
+        </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
@@ -376,23 +395,13 @@
             </excludes>
           </configuration>
         </plugin>
-      </plugins>
-    </build>
-
-    <reporting>
-      <plugins>
         <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-javadoc-plugin</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>findbugs-maven-plugin</artifactId>
+          <version>1.2</version>
           <configuration>
-            <linksource>true</linksource>
-            <links>
-              <link>http://java.sun.com/javase/6/docs/api</link>
-              <link>http://java.sun.com/javaee/5/docs/api/</link>
-              <link>http://commons.apache.org/lang/apidocs/</link>
-              <link>http://commons.apache.org/jxpath/apidocs/</link>
-              <link>http://commons.apache.org/beanutils/apidocs/</link>
-            </links>
+            <excludeFilterFile>conf/findbugs-exclude-filter.xml</excludeFilterFile>
+            <xmlOutput>true</xmlOutput>
           </configuration>
         </plugin>
       </plugins>