根据springio文档这里,我应该可以剪切和粘贴这个.
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework</artifactId>
<version>4.0.5.RELEASE</version>
</dependency>
</dependencies>我做了...into我的maven pom,但是它无法解决这个版本。
因此,我查找并找到了这,并将一个代理存储库添加到了发布存储库的nexus中,但仍然未能找到工件。
然后,我导航到http://repo.spring.io/release回购并手动搜索,找不到工件。
那么,我哪里出错了?
发布于 2014-06-23 06:01:03
这是指南中的一个错误。在下面的某个地方提到了"spring-context",所以我认为应该是:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.5.RELEASE</version>
</dependency>注意"spring-context“而不是"spring-framework”。Github问题要解决这个问题:Github问题。
https://stackoverflow.com/questions/24359162
复制相似问题