1 2 3 4 5 6 7 8 9 10 11 |
> Could not resolve all dependencies for configuration ':runtime'. > Could not find org.springframework.boot:spring-boot-starter-redis:. Searched in the following locations: file:/Users/satist/.m2/repository/org/springframework/boot/spring-boot-starter-redis//spring-boot-starter-redis-.pom file:/Users/satist/.m2/repository/org/springframework/boot/spring-boot-starter-redis//spring-boot-starter-redis-.jar https://repo.grails.org/grails/core/org/springframework/boot/spring-boot-starter-redis//spring-boot-starter-redis-.pom https://repo.grails.org/grails/core/org/springframework/boot/spring-boot-starter-redis//spring-boot-starter-redis-.jar Required by: project : |
spring-boot-starter-redis は、Deprecated になっていた模様
build.gradle を以下のように変更
Before :
1 2 3 |
compile 'org.springframework.boot:spring-boot-starter-redis' |
After :
1 2 3 |
compile 'org.springframework.boot:spring-boot-starter-data-redis' |