Skip to content
Closed
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
6 changes: 3 additions & 3 deletions java/benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ dependencies {
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:33.5.0-jre'
implementation 'redis.clients:jedis:5.1.2'
implementation 'io.lettuce:lettuce-core:6.2.6.RELEASE'
implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE'
implementation 'commons-cli:commons-cli:1.5.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0'
implementation 'io.lettuce:lettuce-core:6.8.1.RELEASE'
implementation 'commons-cli:commons-cli:1.10.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
}
Expand Down
4 changes: 2 additions & 2 deletions java/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ dependencies {
prefer '4.29.1'
}
}
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'

compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.6'
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.8'

// junit
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0'
Expand Down
2 changes: 1 addition & 1 deletion java/integTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
// Use published jedis-compatibility artifact
testImplementation group: 'io.valkey', name: 'valkey-glide-jedis-compatibility', version: project.ext.defaultReleaseVersion, classifier: osdetector.classifier

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'
implementation 'com.google.code.gson:gson:2.13.2'

// Add commons-pool2 as compile-time dependency for tests
Expand Down
4 changes: 2 additions & 2 deletions java/jedis-compatibility/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation project(':client')

// Transitive dependencies needed by GLIDE client
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'

implementation('com.google.protobuf:protobuf-java') {
version {
Expand All @@ -43,7 +43,7 @@ dependencies {
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'

// SpotBugs annotations for static analysis (compile-only to avoid IDE errors)
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.8.0'
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.8'
}

java {
Expand Down
Loading