diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-03-22 11:46:03 +0000 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-03-25 16:02:07 +0000 |
commit | 00245eeb7a41f434565b2f0102d86f2900113017 (patch) | |
tree | a67845b63ac8c636f290cb556e7bec9b50f5d9ca /integration-test/pom.xml | |
parent | 712c644ad08b98bb27d186389f39a5b2e9f8a519 (diff) |
Code review cleanup for: Add kafka messaging support to integration test module
- Address code review on commit which already merged
https://gerrit.onap.org/r/c/cps/+/137496
Issue-ID: CPS-2152
Change-Id: I7a46dd08c919227c37fdeacf4763d0ab364c88c1
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'integration-test/pom.xml')
-rw-r--r-- | integration-test/pom.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml index c84513291a..ca2b26d1c9 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -68,6 +68,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-spring</artifactId> <scope>test</scope> @@ -78,18 +83,18 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.testcontainers</groupId> - <artifactId>postgresql</artifactId> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>spock</artifactId> + <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> - <groupId>org.springframework.kafka</groupId> - <artifactId>spring-kafka-test</artifactId> + <groupId>org.testcontainers</groupId> + <artifactId>spock</artifactId> <scope>test</scope> </dependency> <dependency> @@ -97,11 +102,6 @@ <artifactId>kafka</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - <scope>test</scope> - </dependency> </dependencies> <profiles> |