maven 排除test测试类

<!-- 不编译test -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<skip>true</skip>
				</configuration>
			</plugin>

  

www.beicaiduo.com
原文地址:https://www.cnblogs.com/hoge66/p/8658274.html