早试了,maven我都换了新版本,本地库都删掉重新下载就有这个jar了

解决方案 »

  1.   

    换和你同事的eclipse以及maven插件试试
      

  2.   

    x.jar
    把这个的依赖删掉或换一个版本试试
      

  3.   


    打进去了,IDE是sts(自带maven), 点开pom 查看dependency hierarchy 就有这个jar,所以打包肯定是有的。
      

  4.   

    使用 executions 去除。各个包的依赖肯呢个包括相同功能的不能版本的jar包,这时候就需要使用executions 删除一般一些common包和log包大家都要依赖所有一般都会去除。
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>${spring.version}</version>
    <scope>test</scope> <exclusions>
    <exclusion>
    <artifactId></artifactId>
    <groupId></groupId>
    </exclusion>
    </exclusions>
    </dependency>