Skip to content

Commit

Permalink
chore(redis-session-manager) dotCMS/core#28863 : Redis implementation…
Browse files Browse the repository at this point in the history
… should support ACL (username + password) authentication
  • Loading branch information
jcastro-dotcms committed Jun 20, 2024
1 parent d54beb4 commit f3ea5a2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 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.1'
version = '1.2'

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

dependencies {
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.41'
compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.85'
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'
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '9.0.85'
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down Expand Up @@ -62,7 +61,7 @@ tasks.withType(JavaCompile) {

// Artifactory configuration
artifactory {
contextUrl = 'https://repo.dotcms.com/artifactory'
contextUrl = 'https://repo.dotcms.com/ui/repos/tree/General'
publish {
repository {
repoKey = 'libs-release-local'
Expand Down

0 comments on commit f3ea5a2

Please sign in to comment.