Skip to content

Commit

Permalink
Upgrade commons-io dependency to latest 2.16.1 (#19414)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianladisch authored Aug 22, 2024
1 parent b3f74c7 commit 87704b2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,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"
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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"
)
)
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@
<archunit.version>1.3.0</archunit.version>
<checkstyle.plugin.version>3.1.0</checkstyle.plugin.version>
<commons-cli.version>1.5.0</commons-cli.version>
<commons-io.version>2.11.0</commons-io.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang.version>3.12.0</commons-lang.version>
<commons-text.version>1.10.0</commons-text.version>
<diffutils.version>1.3.0</diffutils.version>
Expand Down
2 changes: 1 addition & 1 deletion samples/client/echo_api/java/feign-gson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion samples/client/echo_api/java/feign-gson/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,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"
}
2 changes: 1 addition & 1 deletion samples/client/petstore/java/feign-no-nullable/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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"
)
)
2 changes: 1 addition & 1 deletion samples/client/petstore/java/feign/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,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"
}
2 changes: 1 addition & 1 deletion samples/client/petstore/java/feign/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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"
)
)

0 comments on commit 87704b2

Please sign in to comment.