maven-site plugins 3.3 java.lang.ClassNotFoundException: org.apache.maven.doxia.siterenderer.DocumentContent

后端 未结 8 1986
感动是毒
感动是毒 2020-11-29 01:07

Since this night, maven site 3.3 plugins stop to work.

Try to delete local repository, but no change. Maven 3.3.9 java 1.8

No config or dependencies defined

8条回答
  •  再見小時候
    2020-11-29 01:46

    Version of the maven site plugin needs to be explicitly set in the build section too. Here is the example:

    
        
            
                org.apache.maven.plugins
                maven-project-info-reports-plugin
                3.0.0
                
                    
                        
                            index
                            licenses
                            dependency-info
                        
                    
                
            
        
    
    
    
        
            
            
                org.apache.maven.plugins
                maven-site-plugin
                3.7.1
            
        
    
    

提交回复
热议问题