taglist-maven-pluginの記述が変わった?

今までは


  org.codehaus.mojo
  taglist-maven-plugin
  
    FIXME, TODO, XXX
  

でOKだったのが

mvn siteすると

ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to configure plugin parameters for:
          org.codehaus.mojo:taglist-maven-plugin:2.0-beta-1


Cause: When configuring a basic element the configuration
        cannot contain any child elements. Configuration element 'tags'.


http://mojo.codehaus.org/taglist-maven-plugin/howto.html
を見ると


    
        
            org.codehaus.mojo
            taglist-maven-plugin
            2.0-beta-1
            
                TODO, @todo, FIXME, @deprecated
            
            
        

とあるので、以下のように変更してOK.


  org.codehaus.mojo
  taglist-maven-plugin
  
    FIXME, TODO, XXX
  

pom.xmlへの記述方法が変更になった!?うーん...