Skip to content

Commit 6fa88d8

Browse files
rjrudinMarkLogic Builder
authored andcommitted
DHFPROD-6948: Removing spring-beans dependency from mlcp-util
1 parent d7b63b1 commit 6fa88d8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

marklogic-data-hub/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,13 @@ dependencies {
6969
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-common'
7070
}
7171

72-
compile 'com.marklogic:mlcp-util:0.9.0'
72+
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+
7379
compile 'com.marklogic:marklogic-data-movement-components:2.2.1'
7480

7581
compile 'commons-io:commons-io:2.4'

0 commit comments

Comments
 (0)