aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradheli.tavares <adheli.tavares@est.tech>2024-04-10 13:48:44 +0100
committeradheli.tavares <adheli.tavares@est.tech>2024-04-11 16:07:00 +0100
commit6c25229507574a96abff7a38d9844a0f10c0b25c (patch)
tree965322a9deba2bffb6b232bdae2a53de24b99ed7
parenta5f14bf812f92fa720334106851b8ac1f9d92cb2 (diff)
Dependency management update
- including dependencies to pom.xml files only where they are used, avoiding extra dependencies being added in all packages. Issue-ID: POLICY-4945 Change-Id: Ibcd3310e938b6bdc973db4074ea0d611b9f8d157 Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
-rw-r--r--main/pom.xml13
1 files changed, 10 insertions, 3 deletions
diff --git a/main/pom.xml b/main/pom.xml
index e030b774..90936638 100644
--- a/main/pom.xml
+++ b/main/pom.xml
@@ -1,6 +1,6 @@
<!--
============LICENSE_START=======================================================
- Copyright (C) 2019, 2023 Nordix Foundation.
+ Copyright (C) 2019, 2023-2024 Nordix Foundation.
Modifications Copyright (C) 2019-2020 AT&T Intellectual Property.
Modifications Copyright (C) 2020-2023 Bell Canada.
================================================================================
@@ -60,7 +60,14 @@
<version>${policy.common.version}</version>
<scope>test</scope>
</dependency>
-
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-fips</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
@@ -117,7 +124,6 @@
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
- <version>${version.spring-security}</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -133,6 +139,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
+ <scope>test</scope>
</dependency>
</dependencies>