Maven skip tests

后端 未结 8 2143
攒了一身酷
攒了一身酷 2020-12-12 09:10

I am using Maven 2.2.1 and to build my project I used this command

mvn clean install -Dmaven.test.skip=true

However, the build failed sayin

8条回答
  •  情歌与酒
    2020-12-12 10:08

    To skip the test case during maven clean install i used -DskipTests paramater in following command

    mvn clean install -DskipTests
    

    into terminal window

提交回复
热议问题