diff options
author | 2018-05-25 16:09:38 -0400 | |
---|---|---|
committer | 2018-05-25 16:10:36 -0400 | |
commit | 6891c2008b93e09f5a67e45b859696cd13466f8a (patch) | |
tree | e7401e68f98c38432fce0bcfec7e5333be92a896 /pom.xml | |
parent | 98f4f48c7d0352e2416123067e88a24cb3708f8c (diff) |
Remove cambria client dependency
Change-Id: I9760839ae44df851640b271d032a39f4bb3691c2
Issue-ID: AAI-1182
Signed-off-by: Daniel Silverthorn <daniel.silverthorn@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -34,6 +34,7 @@ limitations under the License. <name>aai-router-core</name> <properties> <checkstyle.config.location>google_checks.xml</checkstyle.config.location> + <event.client.version>1.3.0-SNAPSHOT</event.client.version> <!-- Sonar Properties --> <sonar.language>java</sonar.language> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> @@ -60,20 +61,21 @@ limitations under the License. <artifactId>common-logging</artifactId> <version>1.2.2</version> </dependency> + + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-api</artifactId> + <version>${event.client.version}</version> + </dependency> + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-dmaap</artifactId> + <version>${event.client.version}</version> + </dependency> <dependency> - <groupId>com.att.nsa</groupId> - <artifactId>cambriaClient</artifactId> - <version>0.0.1</version> - <exclusions> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient-cache</artifactId> - </exclusion> - </exclusions> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-kafka</artifactId> + <version>${event.client.version}</version> </dependency> <dependency> |