From f4bc35bbb552a16c2faeb9eb336ed900ed3cdb37 Mon Sep 17 00:00:00 2001 From: Vyacheslav Artemyev Date: Fri, 17 Nov 2023 15:41:20 +0300 Subject: [PATCH] Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index a5c7dff..f655f5c 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,19 @@ It supports a variety of advanced features including queue and exchange manipula - **RPC Pattern Implementation**: Facilitates the implementation of the RPC pattern, allowing for easy setup of request-response message flows, suitable for service-oriented architectures. ## Getting Started +You need to have [Java 8](https://www.oracle.com/technetwork/java/javase/downloads/index.html) installed. + +### Snapshots +```gradle +repositories { + mavenCentral() + maven("https://s01.oss.sonatype.org/content/repositories/snapshots") +} + +dependencies { + implementation("io.github.viartemev:rabbitmq-kotlin:0.7.0-SNAPSHOT") +} +``` ## Examples Full list of examples could be found [here](https://github.com/viartemev/rabbitmq-kotlin/tree/master/rabbitmq-kotlin-example/src/main)