Integration tests wouldn't start (Failsafe, Maven)

后端 未结 2 1576
悲&欢浪女
悲&欢浪女 2021-01-18 13:35

I\'m trying to use Maven Failsafe Plugin to run my integration tests with this configuration:

 
    maven-failsafe-plugin<         


        
2条回答
  •  野的像风
    2021-01-18 14:04

    For people still looking for a solution, I had that same problem and I solved it by replacing

    
         run-war
    
    

    by

    
         start
    
    

    It works because run* are blocking the execution, while start is non-blocking.

提交回复
热议问题