diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-03-11 14:19:36 +0000 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-03-19 16:05:17 +0000 |
commit | 93dd1b4fb6b6abdcabadbf9dcca0dc5043588274 (patch) | |
tree | c44900436b47c3a155b3dc04ab87698d02192dc2 /integration-test/pom.xml | |
parent | b35ac1b58882edfa60d67e7e32668261286a1992 (diff) |
Add kafka messaging support to integration test module
- add ncmp test using kafka to integration test suite
Issue-ID: CPS-2152
Change-Id: Ia486bbcf1590ecf3ec6cbc2f513b74d55e4d6a31
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'integration-test/pom.xml')
-rw-r--r-- | integration-test/pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml index b379e9ff19..c84513291a 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -88,6 +88,16 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>kafka</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <scope>test</scope> |