Author: felixk
Date: Fri Dec 4 20:34:27 2009
New Revision: 887349
URL: http://svn.apache.org/viewvc?rev=887349&view=rev
Log:
Fix deprecated taglist configuration
Modified:
directory/studio-plugin/trunk/pom.xml
Modified: directory/studio-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio-plugin/trunk/pom.xml?rev=887349&r1=887348&r2=887349&view=diff
==============================================================================
--- directory/studio-plugin/trunk/pom.xml (original)
+++ directory/studio-plugin/trunk/pom.xml Fri Dec 4 20:34:27 2009
@@ -223,12 +223,24 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
- <tags>
- <tag>TODO</tag>
- <tag>@todo</tag>
- <tag>@deprecated</tag>
- <tag>FIXME</tag>
- </tags>
+ <encoding>UTF-8</encoding>
+ <tagListOptions>
+ <tagClasses>
+ <tagClass>
+ <displayName>Todo Work</displayName>
+ <tags>
+ <tag>
+ <matchString>todo</matchString>
+ <matchType>ignoreCase</matchType>
+ </tag>
+ <tag>
+ <matchString>fixme</matchString>
+ <matchType>ignoreCase</matchType>
+ </tag>
+ </tags>
+ </tagClass>
+ </tagClasses>
+ </tagListOptions>
</configuration>
</plugin>
<plugin>
|