Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.15 KB

README.md

File metadata and controls

37 lines (24 loc) · 1.15 KB

RabbitMQ Client for Vert.x

Build Status

A Vert.x client allowing applications to interact with a RabbitMQ broker (AMQP 0.9.1)

Getting Started

Please see the main documentation on the web-site for a full description:

Running the tests

By default the tests uses a cloud provided RabbitMQ instance.

% mvn test

You can run tests with a local RabbitMQ instance:

% mvn test -Prabbitmq.local

You will need to have RabbitMQ running with default ports on localhost for this to work.

You can setup a RabbitMQ instance with Docker:

docker run --rm --name vertx-rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq