queue-rabbitmq
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cisco.oss.foundation.queue</groupId>
<artifactId>queue-rabbitmq</artifactId>
<version>1.5.4-8</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
~ Copyright 2015 Cisco Systems, Inc.
~
~ 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.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>foundation-common-base</artifactId>
<version>1.0.1-8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.cisco.oss.foundation.queue</groupId>
<artifactId>queue-rabbitmq</artifactId>
<name>queue-rabbitmq</name>
<version>1.5.4-8</version>
<description>This project is a rabbitmq implementation for the queue-api library.</description>
<url>https://github.com/foundation-runtime/communication/tree/master/queue-rabbitmq</url>
<issueManagement>
<system>Github</system>
</issueManagement>
<mailingLists>
<mailingList />
</mailingLists>
<developers>
<developer>
<id>yaogen</id>
<name>Yair Ogen</name>
<email>yaogen@cisco.com</email>
<organization>Cisco</organization>
<organizationUrl>http://www.cisco.com</organizationUrl>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<foundation-common-base-version>1.0.1-5</foundation-common-base-version>
<rabbitmq-version>4.1.0</rabbitmq-version>
<logging-api-version>1.0.2-1</logging-api-version>
<logging-log4j-version>1.0.2-1</logging-log4j-version>
<configuration-lib-version>1.0.3-1</configuration-lib-version>
<javaVersion>1.8</javaVersion>
</properties>
<scm>
<connection>scm:git:git@github.com:foundation-runtime/communication.git</connection>
<developerConnection>scm:git:git@github.com:foundation-runtime/communication.git</developerConnection>
<url>https://github.com/foundation-runtime/communication.git</url>
<tag>queue-rabbitmq-1.5.4-8</tag>
</scm>
<organization>
<name>Cisco</name>
<url>http://www.cisco.com</url>
</organization>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<index>true</index>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>queue-api</artifactId>
<version>1.1.1-0</version>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>configuration-lib</artifactId>
<version>${configuration-lib-version}</version>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>logging-api</artifactId>
<version>${logging-api-version}</version>
</dependency>
<dependency>
<groupId>org.hornetq</groupId>
<artifactId>hornetq-server</artifactId>
<version>2.4.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>${rabbitmq-version}</version>
</dependency>
<dependency>
<groupId>net.jodah</groupId>
<artifactId>lyra</artifactId>
<version>0.5.4</version>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>http-client-apache</artifactId>
<version>1.2.0-3</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.2.4.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>logging-log4j</artifactId>
<version>${logging-log4j-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>http-client-jetty</artifactId>
<version>0.0.0-8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cisco.oss.foundation</groupId>
<artifactId>configuration-lib</artifactId>
<version>${configuration-lib-version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</project>