unable to build maven project due to javadoc error?

后端 未结 6 931
离开以前
离开以前 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:41

    With maven-javadoc-plugin version 3.0.0 has been replaced by . To reduce the errors to warnings this pom.xml entry worked for me:

    
        
            
                org.apache.maven.plugins
                maven-javadoc-plugin
                
                    
                        attach-javadocs
                        
                            jar
                        
                    
                
                
                    
                        -Xdoclint:none
                    
                
            
        
    
    

提交回复
热议问题