Skip to content

Commit a0cc0d7

Browse files
chore(be): Fix CVE-2025-48924 vulnerability
1 parent 786f43c commit a0cc0d7

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

backend/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<junit.version>4.13.2</junit.version>
5656
<mockito.version>5.18.0</mockito.version>
5757
<jooq.version>3.20.5</jooq.version>
58+
<commons-lang3.version>3.18.0</commons-lang3.version>
5859
</properties>
5960

6061
<dependencies>
@@ -159,7 +160,7 @@
159160
<dependency>
160161
<groupId>org.apache.commons</groupId>
161162
<artifactId>commons-lang3</artifactId>
162-
<version>3.18.0</version>
163+
<version>${commons-lang3.version}</version>
163164
</dependency>
164165
<dependency>
165166
<groupId>org.apache.commons</groupId>
@@ -331,6 +332,11 @@
331332
<artifactId>nimbus-jose-jwt</artifactId>
332333
<version>${nimbus-jose-jwt.version}</version>
333334
</dependency>
335+
<dependency>
336+
<groupId>org.apache.commons</groupId>
337+
<artifactId>commons-lang3</artifactId>
338+
<version>${commons-lang3.version}</version>
339+
</dependency>
334340
</dependencies>
335341
</dependencyManagement>
336342

legacy/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<opentelemetry.version>1.51.0</opentelemetry.version>
5353
<selenium.version>4.34.0</selenium.version>
5454
<mockito.version>5.18.0</mockito.version>
55+
<commons-lang3.version>3.18.0</commons-lang3.version>
5556
</properties>
5657

5758
<dependencies>
@@ -113,7 +114,7 @@
113114
<dependency>
114115
<groupId>org.apache.commons</groupId>
115116
<artifactId>commons-lang3</artifactId>
116-
<version>3.18.0</version>
117+
<version>${commons-lang3.version}</version>
117118
</dependency>
118119
<dependency>
119120
<groupId>org.projectlombok</groupId>
@@ -253,6 +254,11 @@
253254
<artifactId>ojdbc11</artifactId>
254255
<version>${oracle-driver.version}</version>
255256
</dependency>
257+
<dependency>
258+
<groupId>org.apache.commons</groupId>
259+
<artifactId>commons-lang3</artifactId>
260+
<version>${commons-lang3.version}</version>
261+
</dependency>
256262
</dependencies>
257263
</dependencyManagement>
258264

processor/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<oci.revision>${project.version}</oci.revision>
5050
<flyway.version>11.10.2</flyway.version>
5151
<opentelemetry.version>1.51.0</opentelemetry.version>
52+
<commons-lang3.version>3.18.0</commons-lang3.version>
5253
</properties>
5354

5455
<dependencies>
@@ -113,7 +114,7 @@
113114
<dependency>
114115
<groupId>org.apache.commons</groupId>
115116
<artifactId>commons-lang3</artifactId>
116-
<version>3.18.0</version>
117+
<version>${commons-lang3.version}</version>
117118
</dependency>
118119
<dependency>
119120
<groupId>org.springframework.boot</groupId>
@@ -232,6 +233,11 @@
232233
<version>${junit.version}</version>
233234
<scope>test</scope>
234235
</dependency>
236+
<dependency>
237+
<groupId>org.apache.commons</groupId>
238+
<artifactId>commons-lang3</artifactId>
239+
<version>${commons-lang3.version}</version>
240+
</dependency>
235241
</dependencies>
236242
</dependencyManagement>
237243

0 commit comments

Comments
 (0)