命令行的方式,在哪输入命令都行。
mvn install -Dmaven.test.skip=true
第二种
修改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了