Skip to content

Commit f8df9fe

Browse files
committed
Add 2.7.0.RC1 to readme
1 parent e707df1 commit f8df9fe

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

README.md

Lines changed: 46 additions & 1 deletion
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

@@ -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:

0 commit comments

Comments
 (0)