aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShwetank Dave <shwetank.dave@amdocs.com>2018-10-22 12:20:09 -0400
committerShwetank Dave <shwetank.dave@amdocs.com>2018-11-07 16:46:19 -0500
commitc6dfb11250749a9229236beb5085bc484f8b6363 (patch)
tree4ab95bff10d45c8163b8b5703ee9973d5b959190
parentbc3a68f80f6e62ffce454947d8cae86ca109e09e (diff)
Updating even-client to 1.3.1 - RMQ support
Issue-ID: AAI-1795 Change-Id: Ibfba91df6cb56a409165d6641ff81477a8c252e8 Signed-off-by: Shwetank Dave <shwetank.dave@amdocs.com>
-rw-r--r--champ-lib/champ-core/pom.xml4
-rw-r--r--champ-service-deps-janus/pom.xml4
-rw-r--r--champ-service-deps-titan/pom.xml4
-rwxr-xr-xpom.xml7
4 files changed, 18 insertions, 1 deletions
diff --git a/champ-lib/champ-core/pom.xml b/champ-lib/champ-core/pom.xml
index d86f11f..ada6905 100644
--- a/champ-lib/champ-core/pom.xml
+++ b/champ-lib/champ-core/pom.xml
@@ -49,6 +49,10 @@ limitations under the License.
<groupId>org.onap.aai.event-client</groupId>
<artifactId>event-client-kafka</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.onap.aai.event-client</groupId>
+ <artifactId>event-client-rabbitmq</artifactId>
+ </dependency>
<!-- Event Bus Library - END -->
<dependency>
diff --git a/champ-service-deps-janus/pom.xml b/champ-service-deps-janus/pom.xml
index db1bf26..05f4977 100644
--- a/champ-service-deps-janus/pom.xml
+++ b/champ-service-deps-janus/pom.xml
@@ -118,6 +118,10 @@ limitations under the License.
<groupId>org.onap.aai.event-client</groupId>
<artifactId>event-client-kafka</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.onap.aai.event-client</groupId>
+ <artifactId>event-client-rabbitmq</artifactId>
+ </exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
diff --git a/champ-service-deps-titan/pom.xml b/champ-service-deps-titan/pom.xml
index 20b5ec3..59f2dd7 100644
--- a/champ-service-deps-titan/pom.xml
+++ b/champ-service-deps-titan/pom.xml
@@ -139,6 +139,10 @@ limitations under the License.
<artifactId>event-client-kafka</artifactId>
</exclusion>
<exclusion>
+ <groupId>org.onap.aai.event-client</groupId>
+ <artifactId>event-client-rabbitmq</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
diff --git a/pom.xml b/pom.xml
index b4d162e..a4849b8 100755
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@ limitations under the License.
<properties>
<onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
- <event.client.version>1.3.0</event.client.version>
+ <event.client.version>1.3.1</event.client.version>
</properties>
<modules>
@@ -79,6 +79,11 @@ limitations under the License.
<version>${event.client.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.onap.aai.event-client</groupId>
+ <artifactId>event-client-rabbitmq</artifactId>
+ <version>${event.client.version}</version>
+ </dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>