Maven - Skip building test classes

后端 未结 5 1489
心在旅途
心在旅途 2021-01-30 19:36

Is there a simple way to not build the test classes?

mvn clean install -Dmaven.test.skip=true
5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-30 19:57

    I'm not an expert at maven, but what I use in my current project is:

    mvn clean install -DskipTests=true
    

    Depending on your use case using:

    mvn compile -DskipTests=true
    

    might work for you too.

提交回复
热议问题