Maven配置跳过单元测试

介绍二种跳过单元测试的配置方式

使用maven-surefire-plugin,修改pom文件

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.20.1</version>
    <configuration>
        <skipTests>${skipTests}</skipTests>
        <encoding>UTF-8</encoding>
    </configuration>
</plugin>

执行以下命令即为跳过测试,如不想跳过测试将执行命令skipTests赋值为false或者不带skipTests命令参数即可

mvn -DskipTests=true install 

使用profile中的配置,修改pom文件

<profiles>
    <profile>
        <id>ignoreTest</id>
        <properties>
            <maven.test.skip>true</maven.test.skip>
        </properties>
    </profile>
</profiles>
执行下列命令即可跳过测试
mvn -PignoreTest install        

 

posted @ 2017-02-27 09:04  还是搬砖踏实  阅读(2253)  评论(0编辑  收藏  举报