两种方法
1,--命令
mvn install -Dmaven.test.skip=true
2.pom.xml 文件
在tomcat 下面的pom.xml 文件里面加上如下
<!-- skip test -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>