Upgrade commons-io dependency to latest 2.16.1 (#19414)

This commit is contained in:
julianladisch
2024-08-22 08:59:20 +02:00
committed by GitHub
parent b3f74c7c4f
commit 87704b28c0
9 changed files with 9 additions and 9 deletions

View File

@@ -127,6 +127,6 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-params:$junit_version"
testImplementation "com.github.tomakehurst:wiremock-jre8:2.35.1"
testImplementation "org.hamcrest:hamcrest:2.2"
testImplementation "commons-io:commons-io:2.8.0"
testImplementation "commons-io:commons-io:2.16.1"
testImplementation "ch.qos.logback:logback-classic:1.2.3"
}

View File

@@ -22,7 +22,7 @@ lazy val root = (project in file(".")).
"org.junit.jupiter" % "junit-jupiter-params" % "5.7.0" % "test",
"com.github.tomakehurst" % "wiremock-jre8" % "2.35.1" % "test",
"org.hamcrest" % "hamcrest" % "2.2" % "test",
"commons-io" % "commons-io" % "2.8.0" % "test",
"commons-io" % "commons-io" % "2.16.1" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
)
)