我在项目中成功构建了6个左右的maven依赖项。但是,当我尝试添加JDBC依赖项时,我会收到所有现有工件的错误:
缺少神器mysql:mysql-connector-java:jar:5.1.6
缺少工件org.springframework:spring-aop:jar:3.2.3.RELEASE
缺少工件org.springframework:spring-beans:jar:3.2.3.RELEASE
缺少工件org.springframework:spring-context:jar:3.2.3.RELEASE
缺少工件org.springframework:spring-core:jar:3.2.3.RELEASE
缺少工件org.springframework:spring-expression:jar:3.2.3.RELEASE
缺少工件org.springframework:spring-jdbc:jar:4.3.10.RELEASE
以下是我要添加的依赖性:(看起来像有效的XML)
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.3.10.RELEASE</version>
</dependency>
我已经检查过,根据Maven网站的说法,4.3.10.RELEASE是一个有效版本。
有谁知道为什么添加这个依赖会导致整个Pom.xml出错?
答案 0 :(得分:0)
事实证明我的{User_Home}/.m2/settings.xml
文件中有拼写错误。由于设置文件不可读,因此在更新时导致新的maven构建失败。