ACS-9927 - fixing vulnerability in commons-lang3 (#1126)

* ACS-9927 - fixing vulnerability in commons-lang3

* ACS-9927 - Updating spring-boot version
This commit is contained in:
Belal Ansari
2025-07-30 17:06:18 +05:30
committed by GitHub
parent b5680b35b9
commit 0e28e96d6e

View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</parent>
<properties>
@@ -36,6 +36,7 @@
<spotless-plugin.version>2.45.0</spotless-plugin.version>
<parent.core.deploy.skip>false</parent.core.deploy.skip>
<commons-lang3.version>3.18.0</commons-lang3.version>
</properties>
<profiles>
@@ -216,6 +217,12 @@
<artifactId>testcontainers</artifactId>
<version>1.20.4</version>
</dependency>
<!-- Added as part of fixing vulnerability (PRODSEC-10503), Please remove it if no more needed -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>
</dependencyManagement>