diff options
author | rajesh.kumar <rk00747546@techmahindra.com> | 2024-02-23 20:29:59 +0530 |
---|---|---|
committer | Rajesh kumar <rk00747546@techmahindra.com> | 2024-04-30 09:20:38 +0000 |
commit | eb3a808eaad99ccccacd1b852034ec3bf02ed061 (patch) | |
tree | daca3b8ad8314ab8b9192470dcf4b0ecc2ec4d3d /cps-service/pom.xml | |
parent | ab9ebe9ebef202c2fc3f1b758dc73c02b17e1b06 (diff) |
Add Notification support in cps core
Add notification support using cloud events
Issue-ID:CPS-2068
Change-Id: I56c34400dc73c71b936a51260efd240223babacd
Signed-off-by: rajesh.kumar <rk00747546@techmahindra.com>
Diffstat (limited to 'cps-service/pom.xml')
-rw-r--r-- | cps-service/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cps-service/pom.xml b/cps-service/pom.xml index adca617636..8197e9f95c 100644 --- a/cps-service/pom.xml +++ b/cps-service/pom.xml @@ -37,6 +37,10 @@ <dependencies> <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> </dependency> @@ -75,6 +79,18 @@ <artifactId>micrometer-core</artifactId> </dependency> <dependency> + <groupId>io.cloudevents</groupId> + <artifactId>cloudevents-json-jackson</artifactId> + </dependency> + <dependency> + <groupId>io.cloudevents</groupId> + <artifactId>cloudevents-kafka</artifactId> + </dependency> + <dependency> + <groupId>io.cloudevents</groupId> + <artifactId>cloudevents-spring</artifactId> + </dependency> + <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> |