maven项目install时忽略执行test的几种方法

1.在项目所在文件夹根目录使用maven命令打包时:

mvn install -Dmaven.test.skip=true


mvn install -DskipTests=true
2.springboot项目中,在pom.xml文件的中添加如下配置:

true 	


true
3.maven项目的pom.xml文件的中添加如下配置:

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

4.使用eclipse自带的选项:

eclipse项目右键——>Run As——>Maven build…——>填入install并勾选Skip Tests
maven项目install时忽略执行test的几种方法_第1张图片
这种方法不执行单元测试,也不编译测试类 。

注:以上target/test-classes目录下生成的class文件在eclipse中看不到,需要到相应的文件夹中才能看到。

你可能感兴趣的:(maven,install,package,忽略test,Maven,Spring,Boot)