Maven fail-safe not executing tests

前端 未结 10 1619
孤城傲影
孤城傲影 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 12:46

    For multi-module projects, the child project needs to have the plugin declared as followed,

     
        org.apache.maven.plugins
        maven-failsafe-plugin
     
    

    version inherits from parent pom. Without the above defined, the plugin in parent pom alone will not work.

提交回复
热议问题