-
Notifications
You must be signed in to change notification settings - Fork 200
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
Wrong version comparison for Spring Framework #73
Comments
Unfortunately this is an issue with Ivy's implementation of the Maven versioning scheme. Since Gradle uses Ivy's comparitor and we use the one provided by Gradle for consistency, we inherit this bug. Ideally this issue should be fixed by Gradle as it also affects other usages such as I'd like to see Gradle port Maven's ComparableVersion to follow its rules. There's been minor discussion by the Gradle team of making the comparator pluggable, since it currently doesn't follow the semantic versioning rules. Please consider bringing this up on the Gradle forum. If enough people do maybe it will rise in their priority queue. |
Thank you for the clarification. I opened a disussion on Gradle forum. |
I'm going to close this as a Gradle problem that they have acknowledged, but not fixed. The best you can do is use a |
build.gradle:
Buggy report:
4.2.0.RELEASE
should be considered later than4.2.0.RC3
.The text was updated successfully, but these errors were encountered: