[ https://issues.apache.org/jira/browse/MPOM-62?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Karl Heinz Marbaise reopened MPOM-62: ------------------------------------- Missed the assignment to the version. > 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 > Assignee: 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)