maven打包时忽略测试代码

当我们想用maven打包的时候不想运行测试代码(junit),我们可以有一下方法

一、打包时带上以下命令

mvn install -DskipTests 或 mvn install -Dmaven.test.skip=true


二、使用maven提供的插件


	org.apache.maven.plugins
	maven-surefire-plugin
	2.18.1
	
		true
	

三、使用变量


	true

或者

	true





你可能感兴趣的:(maven)