Maven:Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.7:resources

后端 未结 10 754
渐次进展
渐次进展 2020-12-05 06:34

I am building my project using Maven. My maven version is apache-maven-3.0.4. I am using Eclipse Luna. When I try to build my project I get the following error

10条回答
  •  旧时难觅i
    2020-12-05 06:53

    I faced the same problem and did the filtering false like below working for me. You can try the same...

    
        
            src/test/java
            false
        
        
            src/test/resources
            false
        
    
    

提交回复
热议问题