“Can not set org.eclipse.aether.spi.log.Logger” with custom maven plugin

后端 未结 10 1757
长情又很酷
长情又很酷 2021-02-18 13:15

I have written a small custom maven plugin, and it runs fine.. most of the time.

When using it, it\'s configured to run on test phase, and I see it executing, no proble

10条回答
  •  感情败类
    2021-02-18 13:58

    For a spring boot project, if you can't easily update maven version for some reason ( in my case the error appeared in automated builds which used a maven docker container from a custom docker registry )

    Specifying a version for plugin spring-boot-maven-plugin fixed the issue for me

        
            
                
                    org.springframework.boot
                    spring-boot-maven-plugin
                    1.3.5.RELEASE
                    
                        
                            
                                repackage
                            
                        
                    
                
            
        
    

提交回复
热议问题