[Maven][taglist-maven-plugin]告警[WARNING] Using legacy tag format

pom.xml中添加了taglist-maven-plugin配置,片段如下:

                
                    org.codehaus.mojo
                    taglist-maven-plugin
                    2.4
                    
                        
                            fixme
                            FixMe
                            FIXME
                            @todo
                            todo
                            TODO
                            @deprecated
                        
                    
                

执行mvn clean package site时报错[WARNING] Using legacy tag format. This is not recommended.,详细报错如下:

[INFO] Generating "Tag List" report      --- taglist-maven-plugin:2.4:taglist
[WARNING] Using legacy tag format.  This is not recommended.

这个WARNING指taglist-maven-plugin新版本指定tag的方式有所变更,新方式功能更强大,详细信息可以查看:http://jira.codehaus.org/browse/MTAGLIST-49。新版本的使用实例如下:

                
                    org.codehaus.mojo
                    taglist-maven-plugin
                    2.4
                    
                        
                            
                                
                                    Todo Work Annotation
                                    
                                        
                                            TODO
                                            ignoreCase
                                        
                                        
                                            @todo
                                            ignoreCase
                                        
                                        
                                            FIXME
                                            exact
                                        
                                    
                                
                                
                                    Version Annotation
                                    
                                        
                                            @deprecated
                                            ignoreCase
                                        
                                    
                                
                            
                        
                    
                

你可能感兴趣的:([Maven][taglist-maven-plugin]告警[WARNING] Using legacy tag format)