我如何正确导入org.springframework.data:spring-data-keyvalue:1.0.4.RELEASE?

时间:2016-07-19 08:28:31

标签: spring intellij-idea gradle spring-boot spring-data

我的项目正在使用org.springframework.data:spring-data-redis:1.7.2.RELEASE,这需要org.springframework.data:spring-data-keyvalue:1.0.4.RELEASE,这是Maven遗漏的存储库,我尝试在此问题中添加repo:https://github.com/spring-projects/spring-boot/issues/5894但IntelliJ在测试链接时找不到任何内容(https://repo.spring.io/release)。我尝试下载.jar然后用

安装它
mvn install:install-file -Dfile=spring-data-keyvalue-1.0.4.RELEASE.jar -DgroupId=org.springframework.data -DartifactId=spring-data-keyvalue -Dversion=1.0.4.RELEASE -Dpackaging=jar -DgeneratePom=true

.jar位于.m2 / repository目录中,但仍然没有。我使用Gradle构建并在build.gradle文件中添加compile 'org.springframework.data:spring-data-keyvalue:1.0.4.RELEASE'会产生另一个错误。

完整错误是:

Could not find org.springframework.data:spring-data-keyvalue:1.0.4.RELEASE. Required by: :my-project:unspecified > org.springframework.data:spring-data-redis:1.7.2.RELEASE

如何导入该库?我做错了什么?

0 个答案:

没有答案