GitLab CI is failing due to maven-surefire-plugin with VM crash

后端 未结 5 1687
小鲜肉
小鲜肉 2021-01-05 08:11

We have around of 10 different applications that are Spring Boot projects with Groovy.

All of our projects build correctly in all developer work stations and they we

5条回答
  •  借酒劲吻你
    2021-01-05 09:02

    Try adding false to your maven-surefire-plugin configuration.

    
        org.apache.maven.plugins
        maven-surefire-plugin
        
            false
        
    
    

提交回复
热议问题