You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2018/11/16 22:43:26 UTC

[geode] 10/11: GEODE-2644: Update session state caching dependencies for logging

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

klund pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 9891073212690579beeeaceaca131c1c98419e08
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Fri Nov 2 17:05:33 2018 -0700

    GEODE-2644: Update session state caching dependencies for logging
---
 extensions/geode-modules-assembly/build.gradle                        | 1 +
 extensions/geode-modules-assembly/release/session/bin/modify_war      | 1 +
 .../src/main/java/org/apache/geode/session/tests/TomcatInstall.java   | 4 ++--
 .../http_session_mgmt/tomcat_installing_the_module.html.md.erb        | 1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/extensions/geode-modules-assembly/build.gradle b/extensions/geode-modules-assembly/build.gradle
index c55d161..fb3ad0a 100644
--- a/extensions/geode-modules-assembly/build.gradle
+++ b/extensions/geode-modules-assembly/build.gradle
@@ -210,6 +210,7 @@ task distAppServer(type: Zip, dependsOn: [':extensions:geode-modules-session:jar
       filter(ReplaceTokens, tokens:['TX_VERSION': project.'javax.transaction-api.version'])
       filter(ReplaceTokens, tokens:['JGROUPS_VERSION': project.'jgroups.version'])
       filter(ReplaceTokens, tokens:['SHIRO_VERSION': project.'shiro.version'])
+      filter(ReplaceTokens, tokens:['COMMONS_IO_VERSION': project.'commons-io.version'])
       filter(ReplaceTokens, tokens:['COMMONS_LANG_VERSION': project.'commons-lang3.version'])
       filter(ReplaceTokens, tokens:['COMMONS_VALIDATOR_VERSION': project.'commons-validator.version'])
     }
diff --git a/extensions/geode-modules-assembly/release/session/bin/modify_war b/extensions/geode-modules-assembly/release/session/bin/modify_war
index f7acc11..e74b088 100755
--- a/extensions/geode-modules-assembly/release/session/bin/modify_war
+++ b/extensions/geode-modules-assembly/release/session/bin/modify_war
@@ -268,6 +268,7 @@ OTHER_JARS=(${GEODE}/lib/geode-core-${VERSION}.jar \
     ${GEODE}/lib/fastutil-@FASTUTIL_VERSION@.jar \
     ${GEODE}/lib/javax.transaction-api-@TX_VERSION@.jar \
     ${GEODE}/lib/jgroups-@JGROUPS_VERSION@.jar \
+    ${GEODE}/lib/commons-io-@COMMONS_IO_VERSION@.jar \
     ${GEODE}/lib/commons-lang3-@COMMONS_LANG_VERSION@.jar \
     ${GEODE}/lib/shiro-core-@SHIRO_VERSION@.jar \
     ${GEODE}/lib/commons-validator-@COMMONS_VALIDATOR_VERSION@.jar \
diff --git a/geode-assembly/geode-assembly-test/src/main/java/org/apache/geode/session/tests/TomcatInstall.java b/geode-assembly/geode-assembly-test/src/main/java/org/apache/geode/session/tests/TomcatInstall.java
index c351d29..8da6540 100644
--- a/geode-assembly/geode-assembly-test/src/main/java/org/apache/geode/session/tests/TomcatInstall.java
+++ b/geode-assembly/geode-assembly-test/src/main/java/org/apache/geode/session/tests/TomcatInstall.java
@@ -91,8 +91,8 @@ public class TomcatInstall extends ContainerInstall {
   }
 
   private static final String[] tomcatRequiredJars =
-      {"antlr", "commons-lang", "fastutil", "geode-core", "javax.transaction-api", "jgroups",
-          "log4j-api", "log4j-core", "log4j-jul", "shiro-core", "commons-validator"};
+      {"antlr", "commons-io", "commons-lang", "commons-validator", "fastutil", "geode-core",
+          "javax.transaction-api", "jgroups", "log4j-api", "log4j-core", "log4j-jul", "shiro-core"};
 
   private final TomcatVersion version;
 
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 88d8a96..45b4a56 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
@@ -27,6 +27,7 @@ This topic describes how to install the HTTP session management module for Tomca
 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