Maven fail-safe not executing tests

前端 未结 10 1620
孤城傲影
孤城傲影 2020-12-28 12:23

I\'ve combed StackOverflow and many other sites, have found many other related posts and have followed all said suggestions, but in the end, failsafe is skipping my

10条回答
  •  粉色の甜心
    2020-12-28 13:06

    I'm using java 8, failsafe plugin version 2.22.2 => tests not running problem, to solve this I added next:

    
         org.apache.maven.plugins
         maven-failsafe-plugin
         ${surefire.plugin.version}
         
             
                 org.apache.maven.surefire
                 surefire-junit47
                 2.22.2
             
        
         
             
                 integration
                 integration-test
                 
                     integration-test
                
            
            
                verify
                verify
                
                    verify
                
            
         
    
    

提交回复
热议问题