MVN

com.rabbitmq : rabbitmq-client

Maven & Gradle

Dec 18, 2009
3 usages

The RabbitMQ java client library · RabbitMQ is a complete and highly reliable Enterprise Messaging system. The RabbitMQ client libraries and broker daemon can be used together to create an AMQP network, or used individually to bring the benefits of RabbitMQ to established networks.

<dependency>
    <groupId>com.rabbitmq</groupId>
    <artifactId>rabbitmq-client</artifactId>
    <version>0.9.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.rabbitmq : rabbitmq-client to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9.1

All Versions

Choose a version of com.rabbitmq : rabbitmq-client to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
rabbitmq-client-1.3.0
1.2.x
rabbitmq-client-1.2.0
0.9.x
rabbitmq-client-0.9.1

How to add a dependency to Maven

Add the following com.rabbitmq : rabbitmq-client maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.rabbitmq</groupId>
    <artifactId>rabbitmq-client</artifactId>
    <version>0.9.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.rabbitmq : rabbitmq-client gradle dependency to your build.gradle file:

implementation 'com.rabbitmq:rabbitmq-client:0.9.1'

Gradle Kotlin DSL: Add the following com.rabbitmq : rabbitmq-client gradle kotlin dependency to your build.gradle.kts file:

implementation("com.rabbitmq:rabbitmq-client:0.9.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.rabbitmq : rabbitmq-client sbt scala dependency to your build.sbt file:

libraryDependencies += "com.rabbitmq" % "rabbitmq-client" % "0.9.1"