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-parent | |
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-parent')
-rw-r--r-- | aai-parent/pom.xml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 2b5c191a..01d58f32 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -57,7 +57,6 @@ limitations under the License. <commons.net.version>3.8.0</commons.net.version> <commons.text.version>1.10.0</commons.text.version> <docker.fabric.version>0.40.2</docker.fabric.version> - <dmaap.client.version>1.1.12</dmaap.client.version> <easy.mock.version>5.0.0</easy.mock.version> <eclipse.persistence.version>2.7.11</eclipse.persistence.version> <eelf.core.version>2.0.0-oss</eelf.core.version> @@ -628,12 +627,6 @@ limitations under the License. </dependency> <dependency> - <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> - <artifactId>dmaapClient</artifactId> - <version>${dmaap.client.version}</version> - </dependency> - - <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>${netty.handler.version}</version> @@ -855,6 +848,9 @@ limitations under the License. <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> + <configuration> + <skip>True</skip> + </configuration> </plugin> </plugins> |