diff --git a/notification-core/pom.xml b/notification-core/pom.xml index 26faa23665d87fc32c11f634fcd5f819a686340e..82a9b9f495d8552a5962012a00facd3ca2c963c9 100644 --- a/notification-core/pom.xml +++ b/notification-core/pom.xml @@ -160,6 +160,11 @@ <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </dependency> + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-core</artifactId> + <version>5.7.5</version> + </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> diff --git a/provider/notification-aws/pom.xml b/provider/notification-aws/pom.xml index 57f364b22154d0876a35163c3d2049391b5c9649..8d31464453c6b84e17ee44144f7df11eaa973559 100644 --- a/provider/notification-aws/pom.xml +++ b/provider/notification-aws/pom.xml @@ -40,7 +40,6 @@ <os-core-common.version>0.19.0-SNAPSHOT</os-core-common.version> <jackson-databind.version>2.13.2.2</jackson-databind.version> <jackson.version>2.13.2</jackson.version> - <spring-webmvc.version>5.3.22</spring-webmvc.version> <spring-boot-maven-plugin.version>2.7.6</spring-boot-maven-plugin.version> </properties> @@ -103,7 +102,12 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> - <version>${spring-webmvc.version}</version> + </dependency> + + <dependency> + <groupId>org.springframework.security</groupId> + <artifactId>spring-security-core</artifactId> + <version>5.7.5</version> </dependency> <!-- unit test dependencies -->