IDEA maven打包 跳过test的3种方法

IDEA maven打包 跳过test的3种方法

    • 第一种
    • 第二种
    • 第三种

第一种

命令行的方式,在哪输入命令都行。

mvn install -Dmaven.test.skip=true

IDEA maven打包 跳过test的3种方法_第1张图片
IDEA maven打包 跳过test的3种方法_第2张图片在这里插入图片描述

第二种

修改pox.xml文件

<build>
        <plugins>                    
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>

第三种

选中小闪电,test就被划掉了。然后点击install就会跳过test了
IDEA maven打包 跳过test的3种方法_第3张图片

你可能感兴趣的:(maven,maven)