Skip to content

Commit 2aae367

Browse files
committed
Bump dependencies.
1 parent ec38ce1 commit 2aae367

File tree

3 files changed

+82
-218
lines changed

3 files changed

+82
-218
lines changed

build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ plugins {
2121

2222
// Gradle Versions Plugin
2323
// https://github.com/ben-manes/gradle-versions-plugin
24-
id("com.github.ben-manes.versions") version "0.51.0"
24+
id("com.github.ben-manes.versions") version "0.52.0"
2525

2626
// create report with all open-source licenses
2727
id("com.github.jk1.dependency-license-report") version "2.9"
2828

2929
// run Sonar analysis
30-
id("org.sonarqube") version "5.1.0.4882"
30+
id("org.sonarqube") version "6.0.1.5171"
3131

3232
// get current Git branch name
33-
id("org.ajoberstar.grgit") version "5.2.2"
33+
id("org.ajoberstar.grgit") version "5.3.0"
3434

3535
// JarHC Gradle plugin
3636
id("org.jarhc") version "1.1.1"
@@ -40,8 +40,8 @@ buildscript {
4040
dependencies {
4141
// fix CVE-2023-3635 in Okio < 3.4.0
4242
// (indirect dependency of Gradle Versions Plugin 0.51.0)
43-
classpath("com.squareup.okio:okio:3.9.1")
44-
classpath("com.squareup.okio:okio-jvm:3.9.1")
43+
classpath("com.squareup.okio:okio:3.10.2")
44+
classpath("com.squareup.okio:okio-jvm:3.10.2")
4545
}
4646
}
4747

@@ -51,16 +51,16 @@ repositories {
5151

5252
dependencies {
5353
implementation("org.apache.commons:commons-lang3:3.17.0")
54-
implementation("commons-io:commons-io:2.17.0")
54+
implementation("commons-io:commons-io:2.18.0")
5555
implementation("com.google.inject:guice:5.1.0")
5656
implementation("org.slf4j:slf4j-api:2.0.16")
5757
runtimeOnly("org.slf4j:slf4j-simple:2.0.16")
5858
testImplementation("junit:junit:4.13.2")
59-
testImplementation("org.mockito:mockito-core:5.13.0")
59+
testImplementation("org.mockito:mockito-core:5.15.2")
6060

6161
// fix vulnerabilities in transitive dependencies
6262
// fix CVE-2018-10237 and CVE-2020-8908
63-
implementation("com.google.guava:guava:33.3.0-jre")
63+
implementation("com.google.guava:guava:33.4.0-jre")
6464
}
6565

6666
java {

0 commit comments

Comments
 (0)