From f6ffba06c9fdb4427e93f87895e7ab9acd5b7bd3 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Wed, 9 Jul 2025 11:59:43 -0400 Subject: [PATCH] MLE-22657 Excluding beanutils from example project Turns out it's not even needed by the opencsv dependency. --- examples/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/build.gradle b/examples/build.gradle index f14f1e65d..c1069c5cd 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -19,6 +19,10 @@ dependencies { api 'org.dom4j:dom4j:2.1.4' api 'com.google.code.gson:gson:2.10.1' api 'net.sourceforge.htmlcleaner:htmlcleaner:2.29' - api 'com.opencsv:opencsv:5.11.1' + api ('com.opencsv:opencsv:5.11.2') { + // Excluding this due to a security vulnerability, and the test for the example that uses this library + // passes without this on the classpath. + exclude module: "commons-beanutils" + } api 'org.apache.commons:commons-lang3:3.17.0' }