diff options
author | Singh <soumya.e.singh@accenture.com> | 2024-04-09 17:38:07 +0530 |
---|---|---|
committer | Singh <soumya.e.singh@accenture.com> | 2024-04-10 15:36:25 +0530 |
commit | dff80ed76c8e0e6416e0688541f3094db3ca260a (patch) | |
tree | 72b5210b43ddc9d41c4aa7e4fcb8cfef040db067 /aai-core/pom.xml | |
parent | dd7e9878066b0de0d8c0acddf58aec5702e83115 (diff) |
Remove DMaaP dependency from AAI-Common
- Remove Dmaap dependency in AAI-Common and replace it with Kafka.
Issue-ID: AAI-3792
Change-Id: If3fd5c3bdc2448f7e260a26000b02a510c80d7fb
Signed-off-by: Singh <soumya.e.singh@accenture.com>
Diffstat (limited to 'aai-core/pom.xml')
-rw-r--r-- | aai-core/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/aai-core/pom.xml b/aai-core/pom.xml index fb646692..e48e8f58 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -136,6 +136,17 @@ limitations under the License. <scope>compile</scope> </dependency> <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>com.att.eelf</groupId> <artifactId>eelf-core</artifactId> <version>2.0.0-oss</version> @@ -191,6 +202,16 @@ limitations under the License. <artifactId>jackson-jaxrs-json-provider</artifactId> </dependency> <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka</artifactId> + <version>2.7.14</version> + </dependency> + <dependency> + <groupId>org.springframework.kafka</groupId> + <artifactId>spring-kafka-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> </dependency> |