You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/02/14 04:29:55 UTC

svn commit: r1243776 - /commons/proper/pool/branches/POOL_1_X/pom.xml

Author: ggregory
Date: Tue Feb 14 03:29:55 2012
New Revision: 1243776

URL: http://svn.apache.org/viewvc?rev=1243776&view=rev
Log:
Fix taglist-maven-plugin:2.4 [WARNING] Using legacy tag format.  This is not recommended.

Modified:
    commons/proper/pool/branches/POOL_1_X/pom.xml

Modified: commons/proper/pool/branches/POOL_1_X/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/pom.xml?rev=1243776&r1=1243775&r2=1243776&view=diff
==============================================================================
--- commons/proper/pool/branches/POOL_1_X/pom.xml (original)
+++ commons/proper/pool/branches/POOL_1_X/pom.xml Tue Feb 14 03:29:55 2012
@@ -290,12 +290,28 @@
           <artifactId>taglist-maven-plugin</artifactId>
           <version>2.4</version>
           <configuration>
-            <tags>
-              <tag>TODO</tag>
-              <tag>NOPMD</tag>
-              <tag>NOTE</tag>
-            </tags>
-          </configuration>
+            <tagListOptions>
+              <tagClasses>
+                <tagClass>
+                  <displayName>Code Work</displayName>
+                  <tags>
+                    <tag>
+                      <matchString>FIXME</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>NOPMD</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                    <tag>
+                      <matchString>TODO</matchString>
+                      <matchType>exact</matchType>
+                    </tag>
+                  </tags>
+                </tagClass>
+              </tagClasses>
+            </tagListOptions>
+          </configuration>        
         </plugin>
       </plugins>
     </reporting>