Skip to content

Commit

Permalink
Merge pull request #3 from dotCMS/26991-tomcat-redis-session-manager-…
Browse files Browse the repository at this point in the history
…jars

#26991: updating dependencies and javadoc fix
  • Loading branch information
jcastro-dotcms authored Dec 15, 2023
2 parents 4368dc2 + a39f333 commit d54beb4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
12 changes: 5 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'

group = 'com.dotcms'
version = '1.0'
version = '1.1'

repositories {
mavenCentral()
Expand All @@ -28,13 +28,11 @@ compileJava {
}

dependencies {
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.41'
compile group: 'redis.clients', name: 'jedis', version: '4.4.1'
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.2'
compile group: 'commons-codec', name: 'commons-codec', version: '1.9'
implementation 'redis.clients:jedis:4.4.1'
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.41'
implementation 'redis.clients:jedis:4.4.6'
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.9.0'

testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '9.0.41'
testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '9.0.41'
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,9 @@ public void resetDirtyTracking() {
* <li>The {@code TOMCAT_REDIS_SESSION_PERSISTENT_POLICIES} contains the
* {@link RedisSessionManager.SessionPersistPolicy#SAVE_ON_CHANGE} policy in it.</li>
* <li>If it does, then at least one of the following criteria must be met:</li>
* <ol>
* <li>Either the new value or the existing value of the added attribute <b>ARE NOT NULL</b>.</li>
* <li>The class of the new value compared to the existing value is different.</li>
* <li>The new value is actually different from the existing value.</li>
* </ol>
* <li>Either the new value or the existing value of the added attribute <b>ARE NOT NULL</b>.</li>
* <li>The class of the new value compared to the existing value is different.</li>
* <li>The new value is actually different from the existing value.</li>
* </ol>
* <p>
* After this method executes, and if the object implements <code>HttpSessionBindingListener</code>, the container
Expand Down

0 comments on commit d54beb4

Please sign in to comment.