Skip to content

Commit 357a803

Browse files
committed
Add commons-pool2-2.2.jar to build.gradle and update jar requirements in README.
1 parent 6f52290 commit 357a803

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.markdown

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ Add the following into your Tomcat context.xml (or the context block of the serv
4747

4848
The Valve must be declared before the Manager.
4949

50-
Copy the tomcat-redis-session-manager.jar and jedis-2.0.0.jar files into the `lib` directory of your Tomcat installation.
50+
Copy the following files into the `TOMCAT_BASE/lib` directory:
51+
52+
* tomcat-redis-session-manager-VERSION.jar
53+
* jedis-2.5.2.jar
54+
* commons-pool2-2.2.jar
5155

5256
Reboot the server, and sessions should now be stored in Redis.
5357

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ repositories {
88
dependencies {
99
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '7.0.27'
1010
compile group: 'redis.clients', name: 'jedis', version: '2.5.2'
11+
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.2'
1112
// compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
1213
// testCompile group: 'junit', name: 'junit', version: '4.+'
1314
}

0 commit comments

Comments
 (0)