Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

fix #1230 RedisConnection.set() MethodNotFoundException #1231

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix RedisConnection.set() MethodNotFoundException
upgrade "spring-date-redis" to 2.0.1.RELEASE and jedis to 2.9.0 in profile `spring5`
  • Loading branch information
rieonke authored Nov 21, 2017
commit d49f12616a9a67907326572427227c95d4dad346
8 changes: 6 additions & 2 deletions spring-security-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<spring.security.jwt.version>1.0.8.RELEASE</spring.security.jwt.version>
<junit.version>4.11</junit.version>
<powermock.version>1.5.4</powermock.version>
<spring-data-redis.version>1.5.0.RELEASE</spring-data-redis.version>
<jedis.version>2.6.3</jedis.version>
</properties>

<profiles>
Expand All @@ -29,6 +31,8 @@
<servlet-api.version>3.1.0</servlet-api.version>
<junit.version>4.12</junit.version>
<powermock.version>1.6.1</powermock.version>
<spring-data-redis.version>2.0.1.RELEASE</spring-data-redis.version>
<jedis.version>2.9.0</jedis.version>
</properties>
</profile>
</profiles>
Expand Down Expand Up @@ -161,14 +165,14 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.5.0.RELEASE</version>
<version>${spring-data-redis.version}</version>
<optional>true</optional>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.6.3</version>
<version>${jedis.version}</version>
<optional>true</optional>
</dependency>

Expand Down