You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by db...@apache.org on 2022/06/08 19:35:47 UTC

[geode] branch support/1.12 updated: GEODE-10342: Simplify copying jars (#7790)

This is an automated email from the ASF dual-hosted git repository.

dbarnes pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
     new b3c7582a93 GEODE-10342: Simplify copying jars (#7790)
b3c7582a93 is described below

commit b3c7582a9311877eb9e421e341b188acdb7d5da8
Author: Max Hufnagel <mh...@vmware.com>
AuthorDate: Wed Jun 8 12:35:42 2022 -0700

    GEODE-10342: Simplify copying jars (#7790)
---
 .../tomcat_installing_the_module.html.md.erb       | 24 ++++++----------------
 1 file changed, 6 insertions(+), 18 deletions(-)

diff --git a/geode-docs/tools_modules/http_session_mgmt/tomcat_installing_the_module.html.md.erb b/geode-docs/tools_modules/http_session_mgmt/tomcat_installing_the_module.html.md.erb
index 1412b0931b..efbf248e89 100644
--- a/geode-docs/tools_modules/http_session_mgmt/tomcat_installing_the_module.html.md.erb
+++ b/geode-docs/tools_modules/http_session_mgmt/tomcat_installing_the_module.html.md.erb
@@ -25,23 +25,11 @@ This topic describes how to install the HTTP session management module for Tomca
 2.  The HTTP Session Management Module for Tomcat is included in the <%=vars.product_name%> installation package. After you install <%=vars.product_name_long%>, you will find the module in the `tools/Modules` directory of the installation.
 
 3.  Unzip the module into the `$CATALINA_HOME` directory or wherever you installed the application server.
-4.  Copy the following jar files to the `lib` directory of your Tomcat server (`$CATALINA_HOME/lib`):
-    -   antlr jar
-    -   commons-io jar
-    -   commons-lang jar
-    -   commons-validator jar
-    -   fastutil jar
-    -   geode-commons jar
-    -   geode-core jar
-    -   geode-logging jar
-    -   geode-management jar
-    -   geode-serialization jar
-    -   javax.transaction-api jar
-    -   jgroups jar
-    -   log4j-api jar
-    -   log4j-core jar
-    -   log4j-jul jar
-    -   micrometer-core jar
-    -   shiro-core jar
 
+4.  Copy all of the jar files from the <%=vars.product_name%> `lib` subdirectory to the `lib` subdirectory of your Tomcat server (`$CATALINA_HOME/lib`):
+
+    ```
+    cd $CATALINA_HOME/lib
+    cp $GEODE_HOME/lib/*.jar .
+    ```