Skip to content

Commit

Permalink
Add a basic documentation page for RabbitMQ module (#1661)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Jul 24, 2019
1 parent 4604174 commit e95bdd5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
21 changes: 21 additions & 0 deletions docs/modules/rabbitmq.md
@@ -0,0 +1,21 @@
# RabbitMQ Module

!!! note
This module is INCUBATING. While it is ready for use and operational in the current version of Testcontainers, it is possible that it may receive breaking changes in the future. See [our contributing guidelines](/contributing/#incubating-modules) for more information on our incubating modules policy.

## Adding this module to your project dependencies

Add the following dependency to your `pom.xml`/`build.gradle` file:

```groovy tab='Gradle'
testCompile "org.testcontainers:rabbitmq:{{latest_version}}"
```

```xml tab='Maven'
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>rabbitmq</artifactId>
<version>{{latest_version}}</version>
<scope>test</scope>
</dependency>
```
7 changes: 4 additions & 3 deletions mkdocs.yml
Expand Up @@ -51,16 +51,17 @@ nav:
- modules/databases/neo4j.md
- modules/databases/oraclexe.md
- modules/databases/postgres.md
- modules/webdriver_containers.md
- modules/docker_compose.md
- modules/elasticsearch.md
- modules/kafka.md
- modules/pulsar.md
- modules/localstack.md
- modules/mockserver.md
- modules/toxiproxy.md
- modules/nginx.md
- modules/pulsar.md
- modules/rabbitmq.md
- modules/toxiproxy.md
- modules/vault.md
- modules/webdriver_containers.md
- Test framework integration:
- test_framework_integration/junit_4.md
- test_framework_integration/junit_5.md
Expand Down

0 comments on commit e95bdd5

Please sign in to comment.