Maven 编译:Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date]

使用maven进行打包install package时报错

image.png

解决方式一:
maven的编译打包检查:关闭即可,忽略检查测试文件。


image.png

解决方式二:


        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                org.apache.maven.plugins
                maven-surefire-plugin
                
                    true
                
            
        
        
            
            
                src/main/java
                
                    **/*.properties
                    **/*.xml
                
                false
            
        
    
image.png

你可能感兴趣的:(Maven 编译:Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date])