On behalf of the RabbitMQ team I'm happy to announce that the RabbitMQ
Java Client library 6.0.0 Milestone 1, a preview release, is available
for community testing.
This is the first milestone release for 6.0.0. It introduces new
metrics on published messages. This pre-release introduces also a
breaking change which impacts users implementing the MetricsCollector
interface in their applications. Users of the 5.x.x series are
encouraged to test this version.
* Metrics for confirmed and unsuccessful outgoing publishes
Consult the release change for more details [1].
Dependency (Maven artifact)
Maven:
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>6.0.0.M1</version>
</dependency>
Gradle:
compile 'com.rabbitmq:amqp-client:6.0.0.M1'
This new version is available on our Bintray Milestones Maven
Repository [2]. You need to add this repository explicitly to your
dependency manager configuration file.
Maven:
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-rabbitmq-maven-milestones</id>
<name>bintray</name>
<url>
http://dl.bintray.com/rabbitmq/maven-milestones</url>
</repository>
</repositories>
Gradle:
repositories {
maven {
url "
http://dl.bintray.com/rabbitmq/maven-milestones"
}
}
[1]
https://github.com/rabbitmq/rabbitmq-java-client/releases/tag/v6.0.0.M1
[2]
https://bintray.com/rabbitmq/maven-milestones