How to work around the stricter Java 8 Javadoc when using Maven

后端 未结 5 2162
感动是毒
感动是毒 2020-12-02 05:44

You\'ll quickly realize that JDK8 is a lot more strict (by default) when it comes to Javadoc. (link - see last bullet point)

If you never generate any Javadoc then o

5条回答
  •  借酒劲吻你
    2020-12-02 06:07

    Since version 3.0.0 of maven-javadoc-plugin the doclint is configured via the dedicated XML tag

    
        org.apache.maven.plugins
        maven-javadoc-plugin
        3.0.0
        
           none
        
    
    

提交回复
热议问题