We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de61ff0 commit e22bd0aCopy full SHA for e22bd0a
plugin/settings.gradle.kts
@@ -10,6 +10,14 @@ dependencyResolutionManagement {
10
versionCatalogs {
11
create("libs") {
12
from(files("../gradle/libs.versions.toml"))
13
+
14
+ String kotlinVersion = providers.gradleProperty("kotlin_version").orNull
15
+ if (kotlinVersion != null && !kotlinVersion.isBlank()) {
16
+ // Override the default Kotlin version.
17
+ // The only intended use-case is for testing dev Kotlin builds using kotlinx-benchmark.
18
+ // The Kotlin version should not be overridden during regular development.
19
+ version("kotlin", kotlinVersion)
20
+ }
21
}
22
23
0 commit comments