运行maven 工程 报错 Nothing to compile - all classes are up to date :maven-compiler-plugin

解决方法:

  1. 升级了maven-surefire-plugin(maven-surefire-plugin是maven里执行测试用例的插件) 的版本

     org.apache.maven.plugins
     maven-surefire-plugin
     2.7.1
    
  2. 下面这个方法使用后,可以编译maven 工程, 但是绕过了case的执行

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

你可能感兴趣的:(自动化)