Skip to content

Commit 46f8413

Browse files
committed
Use 2.7.0.RC1 in readme
1 parent d3e431a commit 46f8413

File tree

1 file changed

+50
-5
lines changed

1 file changed

+50
-5
lines changed

README.md

Lines changed: 50 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55

66
## Overview
77

8-
This is a JMS 1.1 client library for RabbitMQ, working in concert with [rabbitmq-jms-topic-exchange](https://github.com/rabbitmq/rabbitmq-server/tree/master/deps/rabbitmq_jms_topic_exchange),
8+
This is a JMS client library for RabbitMQ, working in concert with [rabbitmq-jms-topic-exchange](https://github.com/rabbitmq/rabbitmq-server/tree/master/deps/rabbitmq_jms_topic_exchange),
99
a RabbitMQ server plugin.
10+
It supports JMS 2.0 as of 2.7.0.
1011

1112
[Documentation](https://rabbitmq.com/jms-client.html)
1213

@@ -16,9 +17,9 @@ a RabbitMQ server plugin.
1617

1718
This package is published to several Maven package repositories:
1819

19-
* [Maven Central](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.rabbitmq.jms%22%20AND%20a%3A%22rabbitmq-jms%22)
20-
* [RabbitMQ Maven Milestones repository](https://packagecloud.io/rabbitmq/maven-milestones)
21-
* [Sonatype OSS snapshot repository](https://oss.sonatype.org/content/repositories/snapshots/com/rabbitmq/jms/rabbitmq-jms/)
20+
* [Maven Central](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.rabbitmq.jms%22%20AND%20a%3A%22rabbitmq-jms%22)
21+
* [RabbitMQ Maven Milestones repository](https://packagecloud.io/rabbitmq/maven-milestones)
22+
* [Sonatype OSS snapshot repository](https://oss.sonatype.org/content/repositories/snapshots/com/rabbitmq/jms/rabbitmq-jms/)
2223

2324
#### Latest Stable
2425

@@ -38,6 +39,50 @@ Or the following to `build.gradle` for Gradle:
3839
compile 'com.rabbitmq.jms:rabbitmq-jms:2.6.0'
3940
```
4041

42+
#### Milestone
43+
44+
Add the following to `pom.xml` for Maven:
45+
46+
```xml
47+
<dependency>
48+
<groupId>com.rabbitmq.jms</groupId>
49+
<artifactId>rabbitmq-jms</artifactId>
50+
<version>2.7.0.RC1</version>
51+
</dependency>
52+
```
53+
54+
You need to declare the milestone repository as well:
55+
56+
```xml
57+
<repositories>
58+
59+
<repositories>
60+
<repository>
61+
<id>packagecloud-rabbitmq-maven-milestones</id>
62+
<url>https://packagecloud.io/rabbitmq/maven-milestones/maven2</url>
63+
<releases><enabled>true</enabled></releases>
64+
<snapshots><enabled>false</enabled></snapshots>
65+
</repository>
66+
</repositories>
67+
68+
</repositories>
69+
```
70+
71+
Or the following to `build.gradle` for Gradle:
72+
73+
```groovy
74+
compile 'com.rabbitmq.jms:rabbitmq-jms:2.7.0.RC1'
75+
```
76+
77+
You need to declare the milestone repository as well:
78+
79+
```groovy
80+
repositories {
81+
maven { url 'https://packagecloud.io/rabbitmq/maven-milestones/maven2' }
82+
mavenCentral()
83+
}
84+
```
85+
4186
#### Snapshot
4287

4388
Add the following to `pom.xml` for Maven:
@@ -141,4 +186,4 @@ This package, the RabbitMQ JMS client library, is double-licensed
141186
under the Apache License version 2 ("ASL") and the Mozilla Public License
142187
2.0 ("MPL").
143188

144-
See [LICENSE](./LICENSE).
189+
See [LICENSE](./LICENSE).

0 commit comments

Comments
 (0)