Correct indentation of new TagList config
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6981b1110b
commit
ac1e5a4486
90
pom.xml
90
pom.xml
|
@ -201,51 +201,51 @@ CSV files of various types.
|
||||||
<artifactId>findbugs-maven-plugin</artifactId>
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||||||
<version>2.5.3</version>
|
<version>2.5.3</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>taglist-maven-plugin</artifactId>
|
<artifactId>taglist-maven-plugin</artifactId>
|
||||||
<version>2.4</version>
|
<version>2.4</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tagListOptions>
|
<tagListOptions>
|
||||||
<tagClasses>
|
<tagClasses>
|
||||||
<tagClass>
|
<tagClass>
|
||||||
<displayName>Needs Work</displayName>
|
<displayName>Needs Work</displayName>
|
||||||
<tags>
|
<tags>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>TODO</matchString>
|
<matchString>TODO</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>FIXME</matchString>
|
<matchString>FIXME</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>XXX</matchString>
|
<matchString>XXX</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
</tags>
|
</tags>
|
||||||
</tagClass>
|
</tagClass>
|
||||||
<tagClass>
|
<tagClass>
|
||||||
<displayName>Noteable Markers</displayName>
|
<displayName>Noteable Markers</displayName>
|
||||||
<tags>
|
<tags>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>NOTE</matchString>
|
<matchString>NOTE</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>NOPMD</matchString>
|
<matchString>NOPMD</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
<tag>
|
<tag>
|
||||||
<matchString>NOSONAR</matchString>
|
<matchString>NOSONAR</matchString>
|
||||||
<matchType>exact</matchType>
|
<matchType>exact</matchType>
|
||||||
</tag>
|
</tag>
|
||||||
</tags>
|
</tags>
|
||||||
</tagClass>
|
</tagClass>
|
||||||
</tagClasses>
|
</tagClasses>
|
||||||
</tagListOptions>
|
</tagListOptions>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!--
|
<!--
|
||||||
NOTE: this requires Maven 3.0.x; when used with Maven 2.2.1, the following error is seen:
|
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
|
Embedded error: Error rendering Maven report: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory
|
||||||
|
|
Loading…
Reference in New Issue