From e4fa481dadec04e0cfeacfa0f5f6008f6656d2e1 Mon Sep 17 00:00:00 2001 From: Ashwani Pandey <ashwani.pandey3@ibm.com> Date: Thu, 13 Oct 2022 12:53:33 +0000 Subject: [PATCH] upgrading spring version for avoiding issue related of "org/springframework/core/log/logmessage " (cherry picked from commit f3264b585ca8f6bd68aadbd383c93a5f1272809e) --- provider/notification-ibm/pom.xml | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/provider/notification-ibm/pom.xml b/provider/notification-ibm/pom.xml index 42d890fe8..0c6eb834d 100644 --- a/provider/notification-ibm/pom.xml +++ b/provider/notification-ibm/pom.xml @@ -38,6 +38,18 @@ <jackson.version>2.13.2</jackson.version> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-dependencies</artifactId> + <version>2.5.6</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <!-- <dependency> <groupId>org.opengroup.osdu</groupId> @@ -128,19 +140,13 @@ <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> - <version>5.3.8.RELEASE</version> - <exclusions> - <exclusion> - <groupId>org.springframework.security</groupId> - <artifactId>spring-security-core</artifactId> - </exclusion> - </exclusions> + <version>5.7.3</version> + </dependency> + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-config</artifactId> + <version>5.7.3</version> </dependency> - <dependency> - <groupId>org.springframework.security</groupId> - <artifactId>spring-security-core</artifactId> - <version>5.7.3</version> - </dependency> <dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> -- GitLab