Skip to content

Commit 5d6b5d8

Browse files
authored
chore: Fix Blackduck finding for outdated, transitive dependency commons-beanutils (#826)
1 parent 40e0ea1 commit 5d6b5d8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

cloudplatform/connectivity-ztis/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@
5151
<type>pom</type>
5252
<scope>import</scope>
5353
</dependency>
54-
<!-- resolve vulnerability CVE-2025-48734 -->
55-
<dependency>
56-
<groupId>commons-beanutils</groupId>
57-
<artifactId>commons-beanutils</artifactId>
58-
<version>1.11.0</version>
59-
</dependency>
6054
</dependencies>
6155
</dependencyManagement>
6256
<dependencies>

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
<byte-buddy.version>1.17.5</byte-buddy.version>
123123
<snakeyaml.version>2.4</snakeyaml.version>
124124
<commons-codec.version>1.18.0</commons-codec.version>
125+
<commons-beanutils.version>1.11.0</commons-beanutils.version>
125126
<jsr305.optional>true</jsr305.optional>
126127
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
127128
<maven.compiler.proc>full</maven.compiler.proc>
@@ -290,6 +291,12 @@
290291
<artifactId>bcprov-jdk18on</artifactId>
291292
<version>${bouncycastle.version}</version>
292293
</dependency>
294+
<!-- resolve vulnerability CVE-2025-48734 -->
295+
<dependency>
296+
<groupId>commons-beanutils</groupId>
297+
<artifactId>commons-beanutils</artifactId>
298+
<version>${commons-beanutils.version}</version>
299+
</dependency>
293300
<!--Dependencies with test scope-->
294301
<dependency>
295302
<groupId>com.sap.cloud.sdk</groupId>

0 commit comments

Comments
 (0)