From 0b43ad16ec9b39a7040b0feea1ddb85346f0919e Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Mon, 12 Apr 2010 08:10:42 -0700 Subject: [PATCH] documentation: Fix JAR versions in other container installation The commands to unpack the JARs for commons pool and H2 JDBC driver were incorrect, as the versions didn't match what is currently in the server archive. Bug: issue 533 Change-Id: I1244fddf6d7fdd815a3867c5ccabc8b378751dd1 Signed-off-by: Shawn O. Pearce --- Documentation/install-j2ee.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/install-j2ee.txt b/Documentation/install-j2ee.txt index 3233b4d47e..d51ba68035 100644 --- a/Documentation/install-j2ee.txt +++ b/Documentation/install-j2ee.txt @@ -77,8 +77,8 @@ Install the required additional libraries by copying them into the ---- cp ../review_db/lib/* lib/ext/ java -jar webapps/gerrit.war cat lib/commons-dbcp-1.2.2.jar >lib/ext/commons-dbcp-1.2.2.jar - java -jar webapps/gerrit.war cat lib/commons-pool-1.5.3.jar >lib/ext/commons-pool-1.5.3.jar - java -jar webapps/gerrit.war cat lib/h2-1.2.122.jar >lib/ext/h2-1.2.122.jar + java -jar webapps/gerrit.war cat lib/commons-pool-1.5.4.jar >lib/ext/commons-pool-1.5.4.jar + java -jar webapps/gerrit.war cat lib/h2-1.2.128.jar >lib/ext/h2-1.2.128.jar java -jar webapps/gerrit.war cat lib/postgresql-8.4-701.jdbc4.jar >lib/ext/postgresql-8.4-701.jdbc4.jar ----