You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2014/05/05 21:01:29 UTC

svn commit: r1592610 - /commons/proper/csv/trunk/pom.xml

Author: britter
Date: Mon May  5 19:01:29 2014
New Revision: 1592610

URL: http://svn.apache.org/r1592610
Log:
Drop deprecated configuration of TagList plugin and replace it with a finer grained configuration provided by Brend Eckenfels

Modified:
    commons/proper/csv/trunk/pom.xml

Modified: commons/proper/csv/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/pom.xml?rev=1592610&r1=1592609&r2=1592610&view=diff
==============================================================================
--- commons/proper/csv/trunk/pom.xml (original)
+++ commons/proper/csv/trunk/pom.xml Mon May  5 19:01:29 2014
@@ -201,18 +201,51 @@ CSV files of various types.
         <artifactId>findbugs-maven-plugin</artifactId>
         <version>2.5.3</version>
       </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <version>2.4</version>
-        <configuration>
-          <tags>
-            <tag>TODO</tag>
-            <tag>NOPMD</tag>
-            <tag>NOTE</tag>
-          </tags>
-        </configuration>
-      </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>taglist-maven-plugin</artifactId>
+          <version>2.4</version>
+          <configuration>
+            <tagListOptions>
+              <tagClasses>
+                <tagClass>
+                  <displayName>Needs Work</displayName>
+                  <tags>
+                    <tag>
+                      <matchString>TODO</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>FIXME</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>XXX</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                  </tags>
+                </tagClass>
+                <tagClass>
+                  <displayName>Noteable Markers</displayName>
+                  <tags>
+                    <tag>
+                      <matchString>NOTE</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>NOPMD</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>NOSONAR</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                  </tags>
+                </tagClass>
+              </tagClasses>
+            </tagListOptions>
+          </configuration>
+        </plugin>
       <!--
           NOTE: this requires Maven 3.0.x; when used with Maven 2.2.1, the following error is seen:
           Embedded error: Error rendering Maven report: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory