Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO-NOT-MERGE: Jackson access issue #10460

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test
  • Loading branch information
pan3793 committed Jun 11, 2024
commit 4d743e5f9db29363f9ae015da5f8bd6cd3304732
8 changes: 4 additions & 4 deletions mr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@ project(':iceberg-mr') {

implementation libs.caffeine

testImplementation libs.calcite.core
testImplementation libs.calcite.druid

testImplementation project(path: ':iceberg-data', configuration: 'testArtifacts')
testImplementation project(path: ':iceberg-api', configuration: 'testArtifacts')
testImplementation project(path: ':iceberg-core', configuration: 'testArtifacts')
testImplementation project(path: ':iceberg-hive-metastore', configuration: 'testArtifacts')

testImplementation libs.avro.avro
testImplementation libs.calcite.core
testImplementation(libs.calcite.core) {
// before CALCITE-1224 (1.9.0), it contains un-relocated Jackson classes
exclude group: 'org.apache.calcite.avatica', module: 'avatica'
}
testImplementation libs.kryo.shaded
testImplementation platform(libs.jackson.bom)
testImplementation libs.jackson.annotations
Expand Down
Loading