You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RabbitMQ AMQP 1.0 Java Client is a library to communicate with RabbitMQ using https://www.rabbitmq.com/docs/next/amqp[AMQP 1.0].
10
+
11
+
== Pre-requisites
12
+
13
+
This library requires at least Java 11 (Java 21+ is recommended) and RabbitMQ 4.0 or more.
14
+
9
15
[[license]]
10
16
== License
11
17
12
18
The library is open source, developed https://github.com/rabbitmq/rabbitmq-amqp-java-client/[on GitHub], and is licensed under the https://www.apache.org/licenses/LICENSE-2.0.html[Apache Public License 2.0]
13
19
14
-
== Pre-requisites
20
+
== Dependencies
15
21
16
-
This library requires at least Java 11 (Java 21+ is recommended) and RabbitMQ 4.0 or more.
22
+
Use your favorite build management tool to add the client dependencies to your project.
23
+
24
+
=== Maven
25
+
26
+
.pom.xml
27
+
[source,xml,subs="attributes,specialcharacters"]
28
+
----
29
+
<dependencies>
30
+
31
+
<dependency>
32
+
<groupId>{project-group-id}</groupId>
33
+
<artifactId>{project-artifact-id}</artifactId>
34
+
<version>{project-version}</version>
35
+
</dependency>
36
+
37
+
</dependencies>
38
+
----
39
+
40
+
Snapshots require to declare the <<snapshots,appropriate repository>>.
0 commit comments