Karl Heinz Marbaise created MPOM-62: ---------------------------------------
Summary: Fix warning according to taglist maven plugin about legacy format. Key: MPOM-62 URL: https://issues.apache.org/jira/browse/MPOM-62 Project: Maven POMs Issue Type: Improvement Components: maven Affects Versions: MAVEN-26 Reporter: Karl Heinz Marbaise Priority: Trivial Currently the builds of plugins produce {code} [INFO] Generating "Tag List" report --- taglist-maven-plugin:2.4:taglist [WARNING] Using legacy tag format. This is not recommended. {code} This can be done by using the following configuration {code:xml} <configuration> <tagListOptions> <tagClasses> <tagClass> <displayName>FIXME Work</displayName> <tags> <tag> <matchString>fixme</matchString> <matchType>ignoreCase</matchType> </tag> <tag> <matchString>@fixme</matchString> <matchType>ignoreCase</matchType> </tag> </tags> </tagClass> <tagClass> <displayName>Todo Work</displayName> <tags> <tag> <matchString>todo</matchString> <matchType>ignoreCase</matchType> </tag> <tag> <matchString>@todo</matchString> <matchType>ignoreCase</matchType> </tag> </tags> </tagClass> <tagClass> <displayName>Deprecated Work</displayName> <tags> <tag> <matchString>@deprecated</matchString> <matchType>ignoreCase</matchType> </tag> </tags> </tagClass> </tagClasses> </tagListOptions> </configuration> {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)