Skip to content

Commit

Permalink
open-api: Fix testFixtures dependencies (#11422)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajantha-bhat authored Oct 29, 2024
1 parent 602c2b2 commit 740d4e7
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -963,10 +963,28 @@ project(':iceberg-open-api') {
testFixturesImplementation project(':iceberg-api')
testFixturesImplementation project(':iceberg-core')
testFixturesImplementation project(path: ':iceberg-core', configuration: 'testArtifacts')
testFixturesImplementation project(':iceberg-core').sourceSets.test.runtimeClasspath
testFixturesImplementation project(':iceberg-aws')
testFixturesImplementation project(':iceberg-gcp')
testFixturesImplementation project(':iceberg-azure')
testFixturesImplementation(libs.hadoop3.common) {
exclude group: 'log4j'
exclude group: 'org.slf4j'
exclude group: 'ch.qos.reload4j'
exclude group: 'org.apache.avro', module: 'avro'
exclude group: 'com.fasterxml.woodstox'
exclude group: 'com.google.guava'
exclude group: 'com.google.protobuf'
exclude group: 'org.apache.curator'
exclude group: 'org.apache.zookeeper'
exclude group: 'org.apache.kerby'
exclude group: 'org.apache.hadoop', module: 'hadoop-auth'
exclude group: 'org.apache.commons', module: 'commons-configuration2'
exclude group: 'org.apache.hadoop.thirdparty', module: 'hadoop-shaded-protobuf_3_7'
exclude group: 'org.codehaus.woodstox'
exclude group: 'org.eclipse.jetty'
}
testFixturesImplementation project(path: ':iceberg-bundled-guava', configuration: 'shadow')
testFixturesImplementation libs.junit.jupiter

testFixturesImplementation libs.jetty.servlet
testFixturesImplementation libs.jetty.server
Expand Down

0 comments on commit 740d4e7

Please sign in to comment.