Remove rsocket-examples from generated BOM.#715
Merged
OlegDokuka merged 1 commit intoNov 14, 2019
Merged
Conversation
Fixes rsocket#714 Signed-off-by: Franz Becker <franz.becker@itemis.de>
34d1fcf to
b30dacc
Compare
franzbecker
commented
Nov 11, 2019
| dependencies { | ||
| constraints { | ||
| parent.subprojects.findAll { it.name != project.name }.sort { "$it.name" }.each { | ||
| parent.subprojects.findAll { it.name != project.name && it.name != "rsocket-examples" }.sort { "$it.name" }.each { |
Contributor
Author
There was a problem hiding this comment.
Alternatively you could create a more generic logic that goes something like this:
parent.subprojects.findAll { it.name != project.name }.sort { "$it.name" }.each { subproject ->
subproject.plugins.withType(MavenPublishPlugin.class) {
api subproject
}
}
Member
|
Looks good. Thanks for contribution |
Contributor
Author
|
@OlegDokuka would you mind releasing that change as another RC or could you tell me when you plan to release the next one? Thanks! |
OlegDokuka
pushed a commit
that referenced
this pull request
Mar 2, 2020
Fixes #714 Signed-off-by: Franz Becker <franz.becker@itemis.de>
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.
Fixes #714