Author: lindner
Date: Mon Jun 7 21:55:56 2010
New Revision: 952456
URL: http://svn.apache.org/viewvc?rev=952456&view=rev
Log:
use new taglist config syntax
Modified:
shindig/trunk/pom.xml
Modified: shindig/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/shindig/trunk/pom.xml?rev=952456&r1=952455&r2=952456&view=diff
==============================================================================
--- shindig/trunk/pom.xml (original)
+++ shindig/trunk/pom.xml Mon Jun 7 21:55:56 2010
@@ -725,12 +725,32 @@
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
<configuration>
- <tags>
- <tag>TODO</tag>
- <tag>FIXME</tag>
- <tag>@todo</tag>
- <tag>@deprecated</tag>
- </tags>
+ <tagListOptions>
+ <tagClasses>
+ <tagClass>
+ <displayName>Todo Work</displayName>
+ <tags>
+ <tag>
+ <matchString>todo</matchString>
+ <matchType>ignoreCase</matchType>
+ </tag>
+ <tag>
+ <matchString>FIXME</matchString>
+ <matchType>exact</matchType>
+ </tag>
+ </tags>
+ </tagClass>
+ <tagClass>
+ <displayName>Deprecated</displayName>
+ <tags>
+ <tag>
+ <matchString>@deprecated</matchString>
+ <matchType>exact</matchType>
+ </tag>
+ </tags>
+ </tagClass>
+ </tagClasses>
+ </tagListOptions>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
<reportSets>