Skip to content

Commit d8d4605

Browse files
author
Costin Leau
committed
+ upgrade to Spring Data Redis 1.0 GA and Spring Framework 3.1 GA
1 parent 5aa462a commit d8d4605

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

retwisj/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ apply plugin: "maven"
1010
apply plugin: 'war'
1111

1212
group = 'org.springframework.data'
13+
version = "$springDataRedisTwitterVersion"
1314

1415
sourceCompatibility = 1.6
15-
version = '1.0.0.BUILD-SNAPSHOT'
1616
archivesBaseName = "retwisj"
1717

1818
buildscript {

retwisj/gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
# Logging
44
log4jVersion = 1.2.16
5-
slf4jVersion = 1.6.1
5+
slf4jVersion = 1.6.4
66

77
# Common libraries
8-
springVersion = 3.1.0.M2
9-
springRedisVersion = 1.0.0.M4
8+
springVersion = 3.1.0.RELEASE
9+
springRedisVersion = 1.0.0.RELEASE
1010
jacksonVersion = 1.8.3
1111

1212
# Testing
1313
junitVersion = 4.8.1
1414
mockitoVersion = 1.8.5
1515

16-
springDataKRedisTwitterVersion=1.0.0.BUILD-SNAPSHOT
16+
springDataRedisTwitterVersion=1.0.0.BUILD-SNAPSHOT

retwisj/src/main/java/org/springframework/data/redis/samples/retwisj/web/WebUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static String timeInWords(long time) {
6868
}
6969

7070
if (elapsed < 525600) {
71-
return "time.months" + (elapsed / 43200);
71+
return "time.months#" + (elapsed / 43200);
7272
}
7373

7474
if (elapsed < 1051199) {

0 commit comments

Comments
 (0)