Skip to content

Commit 2a858f6

Browse files
authored
chore: Fix CVE-2025-48734 (#845)
Co-authored-by: Jonas Israel <jonas.israel@sap.com>
1 parent fd7766d commit 2a858f6

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

cloudplatform/connectivity-ztis/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@
7979
<artifactId>commons-logging</artifactId>
8080
<groupId>commons-logging</groupId>
8181
</exclusion>
82+
<exclusion>
83+
<artifactId>commons-beanutils</artifactId>
84+
<groupId>commons-beanutils</groupId>
85+
</exclusion>
8286
</exclusions>
8387
</dependency>
8488
<dependency>
@@ -111,6 +115,17 @@
111115
<groupId>org.slf4j</groupId>
112116
<artifactId>slf4j-api</artifactId>
113117
</dependency>
118+
<dependency>
119+
<groupId>commons-beanutils</groupId>
120+
<artifactId>commons-beanutils</artifactId>
121+
<scope>runtime</scope>
122+
<exclusions>
123+
<exclusion>
124+
<artifactId>commons-logging</artifactId>
125+
<groupId>commons-logging</groupId>
126+
</exclusion>
127+
</exclusions>
128+
</dependency>
114129
<dependency>
115130
<groupId>org.projectlombok</groupId>
116131
<artifactId>lombok</artifactId>

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,8 @@
740740
<ignoredUnusedDeclaredDependency>org.projectlombok:lombok</ignoredUnusedDeclaredDependency>
741741
<!-- By default, JUnit5 adapters are added to every module to ensure no tests are skipped -->
742742
<ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-engine</ignoredUnusedDeclaredDependency>
743+
<!-- Transitive dependencies explicitly declared to fic CVEs-->
744+
<ignoredUnusedDeclaredDependency>commons-beanutils:commons-beanutils</ignoredUnusedDeclaredDependency>
743745
</ignoredUnusedDeclaredDependencies>
744746
</configuration>
745747
</plugin>

0 commit comments

Comments
 (0)