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 <sop@google.com>
This commit is contained in:
Shawn O. Pearce 2010-04-12 08:10:42 -07:00
parent 21f8152da7
commit 0b43ad16ec

View File

@ -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
----