如何在gradle中为logback-redis-appender指定最新的redis客户端依赖项
https://mvnrepository.com/artifact/com.cwbase/logback-redis-appender/1.1.5
我想使用https://mvnrepository.com/artifact/redis.clients/jedis的2.9.0依赖,而不是现在使用的2.5.2。
答案 0 :(得分:0)
添加到build.gradle
:
compile group: 'redis.clients', name: 'jedis', version: '2.9.0'
或
dependencies {
compile "redis.clients:jedis:2.9.0"
}