Skip to content

Commit 9bf534b

Browse files
authored
Merge pull request #1786 from marklogic/feature/22657-bean-utils
MLE-22657 Excluding beanutils from example project
2 parents 6a9e64b + f6ffba0 commit 9bf534b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ dependencies {
1919
api 'org.dom4j:dom4j:2.1.4'
2020
api 'com.google.code.gson:gson:2.10.1'
2121
api 'net.sourceforge.htmlcleaner:htmlcleaner:2.29'
22-
api 'com.opencsv:opencsv:5.11.1'
22+
api ('com.opencsv:opencsv:5.11.2') {
23+
// Excluding this due to a security vulnerability, and the test for the example that uses this library
24+
// passes without this on the classpath.
25+
exclude module: "commons-beanutils"
26+
}
2327
api 'org.apache.commons:commons-lang3:3.17.0'
2428
}

0 commit comments

Comments
 (0)