We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b63b1 commit 6fa88d8Copy full SHA for 6fa88d8
marklogic-data-hub/build.gradle
@@ -69,7 +69,13 @@ dependencies {
69
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-common'
70
}
71
72
- compile 'com.marklogic:mlcp-util:0.9.0'
+ compile ('com.marklogic:mlcp-util:0.9.0') {
73
+ // mlcp-util depends on 4.2.5, but Gradle forces this up to 5.x based on other Spring dependencies.
74
+ // But the Palomida security tool thinks 4.2.5 is still being used and reports it as a vulnerability.
75
+ // So it's forcibly exclude here to avoid confusing Palomida.
76
+ exclude module: "spring-beans"
77
+ }
78
+
79
compile 'com.marklogic:marklogic-data-movement-components:2.2.1'
80
81
compile 'commons-io:commons-io:2.4'
0 commit comments