Ben Manes

Results 518 comments of Ben Manes

They have had this warning since Gradle 5 (#263). We've [asked](https://github.com/gradle/gradle/issues/13498#issuecomment-855187689) for assistance if they want plugins to migrate and instead they have kept this capability. We'd need a contribution...

@anuraaga contributed this feature and has some [unit tests](https://github.com/ben-manes/gradle-versions-plugin/blob/master/src/test/groovy/com/github/benmanes/gradle/versions/ConstraintsSpec.groovy) for it. I'd be happy to accept a PR with your changes and an additional test case. He'd be the best...

Can you please explain how dependency constraints differ from a componentSelection / resolutionStrategy? From afar they appear similar and I don't understand why both exist. As we perform a copy,...

For the time being the below works without plugin changes. It is not pretty, but neither is the resolutionStrategy fix. ```groovy dependencyUpdates.checkConstraints = true def strictVersion(DependencyConstraint constraint, String version) {...

What are your repositories? We only publish to the Gradle plugin portal, so there should be only a single binary. It sounds like another repository hosts a copy for some...

My guess is you have jitpack.io in your listing. I can resolve this plugin there w/o the plugin portal, which means you are downloading their built binary and not ours.

Using [examples/groovy](https://github.com/ben-manes/gradle-versions-plugin/tree/master/examples/groovy) with version `0.35.0`, ``` The following dependencies have later milestone versions: - com.github.ben-manes:gradle-versions-plugin [0.35.0 -> 0.36.0] https://github.com/ben-manes/gradle-versions-plugin ``` So we'd need a reproducer if you think there is...

Thanks for the reproducer! I think that #284 fell through the cracks as I don't recall it (as I usually reply to acknowledge). It has a fairly complex suggestion so...

That’s a good idea. It was an unavoidable quirk before resolution strategies when all we could do is piggyback on Apache Ivy’s revision keywords. The backwards compatible resolution strategy could...