Skip to content

Commit 76b1ee6

Browse files
authored
Merge pull request #8 from ahormazabal/dev/cvepluginupdates
Exclude libraries affected by CVEs.
2 parents 3d1e828 + 35ef3b6 commit 76b1ee6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ repositories {
5656

5757
dependencies {
5858
compile group: 'org.rundeck', name: 'rundeck-core', version: '2.10.1'
59-
pluginLibs group: 'org.codehaus.groovy.modules.http-builder', name: 'http-builder', version: '0.7.1'
59+
pluginLibs (group: 'org.codehaus.groovy.modules.http-builder', name: 'http-builder', version: '0.7.1') {
60+
exclude (group: "commons-collections", module: "commons-collections")
61+
exclude (group: "commons-beanutils", module: "commons-beanutils")
62+
}
63+
// bump xerces version brought by http-builder affected by CVE-2012-0881
64+
pluginLibs("xerces:xercesImpl:2.12.0")
6065
pluginLibs group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
6166
pluginLibs group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.13'
6267

0 commit comments

Comments
 (0)