unable to build maven project due to javadoc error?

后端 未结 6 953
离开以前
离开以前 2021-02-01 13:33

has anyone come across a simlar maven error below?

i am unable to build my project due to the error below. All was working previously fine before i started working on th

6条回答
  •  广开言路
    2021-02-01 13:48

    As mentioned by @turbanoff since version 3.0.0 the maven-javadoc-plugin config setting has been replaced by

    So the plugin defintion in your pom.xml can look like this:

    
        org.apache.maven.plugins
        maven-javadoc-plugin
        3.2.0
        
            -Xdoclint:none
        
    
    

    This configuration will still generate the warnings. So you can and should fix them in your code. But it will now no longer break the maven build.

提交回复
热议问题