参考文章

CSDN 参考文章

命令行方式跳过测试

# 既不编译测试类,也不运行测试。
mvn package -Dmaven.test.skip=true

# 编译测试类,但不运行测试。
mvn package -DskipTests=true