diff options
author | egernug <gerard.nugent@est.tech> | 2023-07-26 10:36:15 +0100 |
---|---|---|
committer | egernug <gerard.nugent@est.tech> | 2023-09-14 10:47:51 +0100 |
commit | 9693ec51cf6526082f0ad0c3ad208d144cbbb163 (patch) | |
tree | b3e0c1a0506bcb6d17687f353448e41c092fb964 /cps-service/pom.xml | |
parent | bf8997853d7759383303b07bbeb780ca73428536 (diff) |
Migrate CPS to Spring-boot 3.0
Issue-ID: CPS-1789
Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: I932fca8a50cedf2ae0604401c5e2b27896e4d449
Diffstat (limited to 'cps-service/pom.xml')
-rw-r--r-- | cps-service/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cps-service/pom.xml b/cps-service/pom.xml index d4fe2e31aa..3f5d639896 100644 --- a/cps-service/pom.xml +++ b/cps-service/pom.xml @@ -111,6 +111,7 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> + <version>3.0.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -124,6 +125,12 @@ <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <scope>test</scope> + </dependency> + <!-- T E S T D E P E N D E N C I E S --> <dependency> <groupId>org.codehaus.groovy</groupId> @@ -170,5 +177,9 @@ <artifactId>aspectjrt</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>jakarta.validation</groupId> + <artifactId>jakarta.validation-api</artifactId> + </dependency> </dependencies> </project> |