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 all commits
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
8 changes: 8 additions & 0 deletions build.gradle
Expand Up @@ -67,6 +67,14 @@ subprojects {
}
}

// Ensure that Javadoc generation is always tested
check.dependsOn(javadoc)

javadoc {
rnorth marked this conversation as resolved.
Show resolved Hide resolved
dependsOn delombok
source = delombok.outputs
}

shadowJar {
configurations = []
classifier = null
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