ephemient
05/11/2023, 11:28 PMjava {
consistentResolution {
useCompileClasspathVersions()
}
}
is there interest in enabling something similar for Kotlin Multiplatform?kotlin {
targets.all {
compilations.all {
runtimeDependencyConfigurationName?.let(configurations::getByName)
?.shouldResolveConsistentlyWith(configurations.getByName(compileDependencyConfigurationName))
for (other in associateWith) {
configurations.getByName(compileDependencyConfigurationName)
.shouldResolveConsistentlyWith(configurations.getByName(other.compileDependencyConfigurationName))
}
}
}
}