Skip to content

Commit

Permalink
Merge pull request #36 from rundeck-plugins/RUN-1827
Browse files Browse the repository at this point in the history
RUN-1827: Remove guava from exported libraries
  • Loading branch information
ltamaster authored Jul 12, 2023
2 parents c965ce6 + b7b020f commit 4dd07dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,20 @@ dependencies {
pluginLibs (group: 'com.microsoft.azure', name: 'azure', version: '1.41.4'){
exclude group: "com.fasterxml.jackson.core"
exclude group: "net.minidev", module: "json-smart"
exclude group: 'com.google.guava', module: 'guava'
}
pluginLibs (group: 'com.microsoft.azure', name: 'azure-storage', version: '8.6.6') {
exclude group: "com.fasterxml.jackson.core"
exclude group: "net.minidev", module: "json-smart"
exclude group: 'com.google.guava', module: 'guava'
}
pluginLibs group: 'commons-net', name: 'commons-net', version: '3.9.0'
pluginLibs group: 'commons-io', name: 'commons-io', version: '2.12.0'

// https://mvnrepository.com/artifact/com.microsoft.azure/azure-keyvault-core
pluginLibs group: 'com.microsoft.azure', name: 'azure-keyvault-core', version: '1.0.0'
pluginLibs (group: 'com.microsoft.azure', name: 'azure-keyvault-core', version: '1.0.0') {
exclude group: 'com.google.guava', module: 'guava'
}

testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation "org.codehaus.groovy:groovy-all:3.0.9"
Expand Down

0 comments on commit 4dd07dc

Please sign in to comment.