Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#26991: updating dependencies and javadoc fix #3

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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