Marc Knaup
01/17/2019, 5:30 PMconfigurations {
all {
resolutionStrategy.eachDependency {
if (requested.group == "org.jetbrains.kotlin") {
useVersion(embeddedKotlinVersion)
because("All Kotlin modules must have the same version.")
}
}
}
}
Something like that being part of the Kotlin Gradle Plugin would be great, but with configurable version of course.Czar
01/17/2019, 5:33 PMMarc Knaup
01/17/2019, 5:39 PMkotlin-reflect
from Kotlin 1.3 to 1.2 in some configurations even though I had testImplementation(kotlin("reflect"))
in my project.Czar
01/17/2019, 6:12 PMNikky
01/17/2019, 6:45 PMtestImplementation(kotlin("reflect", embeddedKotlinVersion))
i thinkmagnusj
01/18/2019, 3:29 AMNikky
01/18/2019, 8:34 AMallProjects { dependencies { contraints { .. } } }