diff options
-rw-r--r-- | champ-lib/champ-core/pom.xml | 4 | ||||
-rw-r--r-- | champ-service-deps-janus/pom.xml | 4 | ||||
-rw-r--r-- | champ-service-deps-titan/pom.xml | 4 | ||||
-rwxr-xr-x | pom.xml | 7 |
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> @@ -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> |