Use finer grained TagList configuration proposed by Bernd Eckenfels for the csv components
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1592613 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7d6e0beccb
commit
cef1ca2f77
43
pom.xml
43
pom.xml
|
@ -641,11 +641,44 @@
|
|||
<artifactId>taglist-maven-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<tags>
|
||||
<tag>TODO</tag>
|
||||
<tag>NOPMD</tag>
|
||||
<tag>NOTE</tag>
|
||||
</tags>
|
||||
<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>
|
||||
<plugin>
|
||||
|
|
Loading…
Reference in New Issue