Skip to content

Commit

Permalink
Force commons-io transitive dependency version (#16816)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis authored Dec 10, 2024
1 parent b1181cf commit 31afd17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/fixtures/hdfs-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
apply plugin: 'opensearch.java'

dependencies {
api("commons-io:commons-io:2.16.0")
api("org.apache.hadoop:hadoop-minicluster:3.3.5") {
exclude module: 'websocket-client'
exclude module: 'jettison'
Expand All @@ -41,6 +42,7 @@ dependencies {
exclude group: "org.bouncycastle"
exclude group: "com.squareup.okhttp3"
exclude group: "org.xerial.snappy"
exclude group: "commons-io"
exclude module: "json-io"
exclude module: "logback-core"
exclude module: "logback-classic"
Expand All @@ -66,7 +68,9 @@ dependencies {
api "org.eclipse.jetty.websocket:javax-websocket-server-impl:${versions.jetty}"
api "ch.qos.logback:logback-core:1.2.13"
api "ch.qos.logback:logback-classic:1.2.13"
api 'org.apache.kerby:kerb-admin:2.0.3'
api("org.apache.kerby:kerb-admin:2.0.3") {
exclude group: "commons-io"
}
runtimeOnly "com.google.guava:guava:${versions.guava}"
runtimeOnly("com.squareup.okhttp3:okhttp:4.11.0") {
exclude group: "com.squareup.okio"
Expand Down

0 comments on commit 31afd17

Please sign in to comment.