diff options
author | egernug <gerard.nugent@est.tech> | 2023-10-03 12:56:29 +0100 |
---|---|---|
committer | egernug <gerard.nugent@est.tech> | 2023-10-16 10:41:20 +0100 |
commit | 42daf6319fcb5b2857381fd3a98ed12c43b7ddd9 (patch) | |
tree | 77f8da48992367103b2331f7dcb32961f56ad013 /cps-service | |
parent | 694b13a129ea1b070aad3a95fe1f19917136bc96 (diff) |
Clean up Dependencies
Clean up of dependencies into logical orders and compile/test statuses
Issue-ID: CPS-1873
Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: I90ad49b7f1362e8f5b7006b85013c0bdf1b4d4ef
Diffstat (limited to 'cps-service')
-rw-r--r-- | cps-service/pom.xml | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/cps-service/pom.xml b/cps-service/pom.xml index eaa9fdcbf3..0787409ca2 100644 --- a/cps-service/pom.xml +++ b/cps-service/pom.xml @@ -37,6 +37,26 @@ <dependencies> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-messaging</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-cache</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-aop</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka</artifactId> + </dependency> + <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> </dependency> @@ -55,6 +75,10 @@ <artifactId>micrometer-core</artifactId> </dependency> <dependency> + <groupId>jakarta.validation</groupId> + <artifactId>jakarta.validation-api</artifactId> + </dependency> + <dependency> <groupId>net.logstash.logback</groupId> <artifactId>logstash-logback-encoder</artifactId> </dependency> @@ -104,33 +128,12 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-messaging</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-cache</artifactId> - <version>3.0.0</version> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-aop</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-validation</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.kafka</groupId> - <artifactId>spring-kafka</artifactId> - </dependency> + <!-- T E S T D E P E N D E N C I E S --> <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> <artifactId>groovy</artifactId> @@ -176,9 +179,5 @@ <artifactId>aspectjrt</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>jakarta.validation</groupId> - <artifactId>jakarta.validation-api</artifactId> - </dependency> </dependencies> </project> |