diff options
author | Tian Lee <TianL@amdocs.com> | 2018-06-07 14:26:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-06-07 14:26:54 +0000 |
commit | c6ebf9ae6c3e61d212ea058d773909cb78c4ce31 (patch) | |
tree | c7be675cb12b30f21d1b47f51a819d28723c1ac5 /event-client-rabbitmq/pom.xml | |
parent | 385a8bc2de5129126771857bd5d4da11d8b2778d (diff) | |
parent | a19b69d1809955293390c8abd868d0eaff318e5b (diff) |
Merge "Event Client library support for RabbitMQ"
Diffstat (limited to 'event-client-rabbitmq/pom.xml')
-rw-r--r-- | event-client-rabbitmq/pom.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/event-client-rabbitmq/pom.xml b/event-client-rabbitmq/pom.xml new file mode 100644 index 0000000..6974c68 --- /dev/null +++ b/event-client-rabbitmq/pom.xml @@ -0,0 +1,61 @@ +<!-- + + ============LICENSE_START======================================================= + org.onap.aai + ================================================================================ + Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. + Copyright © 2017-2018 European Software Marketing Ltd. + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ============LICENSE_END========================================================= + +--> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client</artifactId> + <version>1.3.0-SNAPSHOT</version> + </parent> + + <artifactId>event-client-rabbitmq</artifactId> + + <properties> + <common.logging.version>1.2.2</common.logging.version> + </properties> + + <dependencies> + <dependency> + <groupId>com.rabbitmq</groupId> + <artifactId>amqp-client</artifactId> + <version>5.1.2</version> + </dependency> + <dependency> + <groupId>org.onap.aai.logging-service</groupId> + <artifactId>common-logging</artifactId> + <version>${common.logging.version}</version> + </dependency> + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-api</artifactId> + <version>${project.parent.version}</version> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> |