Skip to content

Commit

Permalink
Solve 5.20 extra-dependencies conflict errors (#4094)
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 authored May 29, 2024
1 parent 42c1176 commit d767f7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions extended/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ dependencies {
// testImplementation analogous is not needed since is bundled via `test-utils` submodule
compileOnly group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.4.0', withoutServers

compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.17.0'
compileOnly group: 'org.apache.arrow', name: 'arrow-vector', version: '13.0.0'
compileOnly group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '13.0.0'

testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'
testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.17.0'
testImplementation group: 'org.apache.arrow', name: 'arrow-vector', version: '13.0.0'
testImplementation group: 'org.apache.arrow', name: 'arrow-memory-netty', version: '13.0.0'

Expand Down
4 changes: 2 additions & 2 deletions extra-dependencies/aws/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jar {
}

dependencies {
implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.425'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-sts', version: '1.12.425'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.425', commonExclusions
implementation group: 'com.amazonaws', name: 'aws-java-sdk-sts', version: '1.12.425', commonExclusions
}
1 change: 1 addition & 0 deletions extra-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ ext {
exclude group: 'org.slf4j', module: 'slf4j-api'

// jackson
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'

Expand Down
2 changes: 1 addition & 1 deletion extra-dependencies/yaml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jar {
}

dependencies {
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1', commonExclusions
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.17.0', commonExclusions
}


Expand Down

0 comments on commit d767f7e

Please sign in to comment.