vlsi opened a new pull request, #6046: URL: https://github.com/apache/jmeter/pull/6046
## Description Technically speaking, Maven could use `dependencyManagement / scope=import` for resolution, so we would rather have it for the documentation purposes. At the same time, we put "resolved" versions in the published poms (e.g. to help human consumers, and avoid discrepancies between Maven resolution and Gradle resolution). However, previously we used "runtimeClasspath" for resolving versions for `scope=compile`, and it does not work for dependencies which are "compile-only". So the important change here is `fromResolutionOf("runtimeClasspath")` -> `fromResolutionResult()` which would default to use `compileClasspath` for `compile` dependencies. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org