-
Notifications
You must be signed in to change notification settings - Fork 40.8k
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
Consider rollbacking RSocket BOM dependency #20348
Comments
For information this problem will arise when enabling the consumption of Gradle module metadata, which is the default in Gradle 6, so rollbacking to version 5.6 or disabling this feature would resolve the issue. But this is only a workaround and not a real solution |
@celcius112 before we consider doing anything, I'd like to understand the issue a bit more. Creating a project on start.spring.io with Gradle and 2.2.5 does not yield to that issue. I've tried with Gradle If you can share a small sample that reproduces the problem, that would be idea. If you are using the dependency management plugin, make sure first you're using |
Thank you @snicoll, you're right I should have reproduced with a smaller spring boot project 😅. So after some investigation RSocket is indeed not packaged with a Gradle module metadata although its pom declares it otherwise. Since the mistake is definitely on RSocket side, and the behavior comes from Gradle's error handling, I guess this issue might be closed. Sorry for disturbing 😁 |
For future reference: gradle/gradle#5606 |
Thanks for letting us know. |
Hello everyone,
We tried updating our applications to Spring Boot 2.2.5 (we are using gradle 6.2), and we are receiving this exception when resolving the dependencies
org.gradle.internal.resolve.ModuleVersionResolveException: Could not resolve io.rsocket:rsocket-bom:1.0.0-RC6
, even though we do not use RSocket. It seems like RSocket does not publish a Gradle module metadata hence the error.One of my colleague opened an issue on the RSocket repo.
Overriding the dependency or the version does not solve the issue.
Until the issue is fixed on RSocket side, I'm wondering whether we should rollback to RC5.
The text was updated successfully, but these errors were encountered: