Failure to find maven-plugins:maven-cobertura-plugin:plugin:1.3

是 jaxen-1.1.3引用了cobertura,于是在项目pom中做如下配置

Xml代码   收藏代码
  1. <dependency>  
  2.             <groupId>jaxen</groupId>  
  3.             <artifactId>jaxen</artifactId>  
  4.             <version>1.1.3</version>  
  5.             <exclusions>  
  6.                 <exclusion>  
  7.                     <artifactId>maven-cobertura-plugin</artifactId>  
  8.                     <groupId>maven-plugins</groupId>  
  9.                 </exclusion>  
  10.                 <exclusion>  
  11.                     <artifactId>maven-findbugs-plugin</artifactId>  
  12.                     <groupId>maven-plugins</groupId>  
  13.                 </exclusion>  
  14.             </exclusions>  
  15. </dependency>  

你可能感兴趣的:(Failure to find maven-plugins:maven-cobertura-plugin:plugin:1.3)