It looks like the gradle plugin for kotlin 1.8.20 ...
# gradle
e
It looks like the gradle plugin for kotlin 1.8.20 the
allSourceSetsRuntimeDependenciesMetadata
. I use this configuration for version mapping in https://github.com/openrndr/orx/blob/051da62740d8cbf77415fe7e0e518af60f1ff81f/buil[…]n/org/openrndr/extra/convention/kotlin-multiplatform.gradle.kts . Question is if there is an alternative (and if using this configuration was a good choice in the first place)? When I replace it using
fromResolutionResult()
or
fromResolutionOf("allSourceSetsCompileDependenciesMetadata")
I don't get the desired versions in the generated POMs
I fixed this by using
fromResolutionOf("commonMainApiDependenciesMetadata")
instead
I am wondering though, if this is not a Gradle or kotlin-gradle plugin bug? resorting to internal configurations seems a bit of a work-around and has already proven to be unstable.