Document all options in README.md#145
Merged
martinbonnin merged 5 commits intoGradleUp:mainfrom Jul 6, 2025
Merged
Conversation
mostly based on `CentralPortalOptions` docs.
Member
|
Thanks for opening this! Any thought about "just" putting a big code block with all the All optionsnmcpAggregation {
centralPortal {
// publish manually from the portal
publishingType = "USER_MANAGED"
// Increase the validation timeout to 30 minutes
validationTimeout = Duration.of(30, ChronoUnit.MINUTES)
// Disable waiting for validation
validationTimeout = java.time.Duration.ZERO
// Publish automatically once validation is successful
publishingType = "AUTOMATIC"
// Increase the publishing timeout to 30 minutes
publishingTimeout = Duration.of(30, ChronoUnit.MINUTES)
// Disable waiting for publishing
publishingTimeout = java.time.Duration.ZERO
// Customize the publication name
publicationName = "My Awesome Library version $version"
}
}I find out my brain is used to reading code blocks and comments more than regular paragraphs. It's definitely in the realm of personal preference though so no strong opinion either way |
Contributor
Author
|
That would be great as well. Should I still keep the |
README.mdREADME.md
Member
That'd be great, that is something different. |
Contributor
Author
|
Let me know if the current version, with these titles and heading is OK for you. |
Member
|
Looks great to me, thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
mostly based on
CentralPortalOptionsdocs.Closes #132