Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Javadoc error #1813

Merged
merged 3 commits into from Sep 5, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
- run:
command: ./gradlew testcontainers:build -x test -x check
- run:
command: ./gradlew testcontainers:check --scan
command: ./gradlew testcontainers:check javadoc --scan
rnorth marked this conversation as resolved.
Show resolved Hide resolved
- run:
name: Save test results
command: |
Expand Down
Expand Up @@ -359,9 +359,9 @@ public RabbitMQContainer withRabbitMQConfig(MountableFile rabbitMQConf) {
/**
* Overwrites the default RabbitMQ configuration file with the supplied one.
*
* This function doesn't work with RabbitMQ < 3.7.
* This function doesn't work with RabbitMQ &lt; 3.7.
*
* This function and the Sysctl format is recommended for RabbitMQ >= 3.7
* This function and the Sysctl format is recommended for RabbitMQ &gt;= 3.7
*
* @param rabbitMQConf The rabbitmq.config file to use (in sysctl format, don't forget empty line in the end of file)
* @return This container.
Expand Down