Skip to content

Commit

Permalink
[NOID] Excluded duplicated libs in extra-dependencies (#3467)
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 authored Feb 21, 2023
1 parent bd703cf commit 38e7563
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions extra-dependencies/hadoop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ shadowJar {
def commonExclusions = {
exclude group: 'io.netty'
exclude group: 'com.sun.jersey'
exclude group: 'org.slf4j'
exclude group: 'org.apache.commons', module: 'commons-compress'
}

dependencies {
Expand Down
12 changes: 8 additions & 4 deletions extra-dependencies/selenium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ jar {
}
}

def commonExclusions = {
exclude group: 'com.google.guava', module: 'guava'
exclude group: 'commons-beanutils', module: 'commons-beanutils'
exclude group: 'org.slf4j'
}

dependencies {
// currently we cannot update to the latest version due to guava minimum version required (31.0.1-jre)
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59', {
exclude group: 'com.google.guava', module: 'guava'
}
implementation group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '5.1.0'
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59', commonExclusions
implementation group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '5.1.0', commonExclusions
}
1 change: 0 additions & 1 deletion extra-dependencies/xls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ dependencies {
exclude group: 'org.apache.logging.log4j'
}
implementation group: 'com.github.virtuald', name: 'curvesapi', version: '1.06'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
}

0 comments on commit 38e7563

Please sign in to comment.