RabbitMQ Java Client.
RabbitMQ AMQP Java Client.
Here is the list of declaration for amqp-client. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>2.8.6</version> </dependency>
If you think this Maven repository POM file listing for amqp-client is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GPL v2
URL: http://www.gnu.org/licenses/gpl-2.0.txtName:MPL 1.1
URL: http://www.mozilla.org/MPL/MPL-1.1.txt.
The amqp-client-2.8.6 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Console | commons-cli 1.1 Commons CLI provides a simple API for presenting, processing and validating a command line interface. | 58 |
File | commons-io 1.2 Commons-IO contains utility classes, stream implementations, file filters, and endian classes. | 42 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following packages are defined in the amqp-client-2.8.6.jar
com.rabbitmq.client com.rabbitmq.client.impl com.rabbitmq.tools com.rabbitmq.tools.json com.rabbitmq.tools.jsonrpc com.rabbitmq.utility
Here is the content of the POM file.
<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>2.8.6</version>
<packaging>jar</packaging>
<name>RabbitMQ Java Client</name>
<description>RabbitMQ AMQP Java Client</description>
<url>http://www.rabbitmq.com</url>
<licenses>
<license>
<name>GPL v2</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
<license>
<name>MPL 1.1</name>
<url>http://www.mozilla.org/MPL/MPL-1.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://hg.rabbitmq.com/rabbitmq-java-client</url>
<connection>scm:hg:http://hg.rabbitmq.com/rabbitmq-java-client</connection>
</scm>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>