Build: Add build scan server url setting

This commit is contained in:
Vyacheslav Gerasimov
2019-12-13 18:47:12 +03:00
parent 724884513e
commit 8d303af395
5 changed files with 17 additions and 9 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ plugins {
}
group = "org.jetbrains.kotlin"
version = "0.0.5"
version = "0.0.6"
repositories {
mavenCentral()
@@ -90,6 +90,8 @@ class KotlinBuildProperties(
val pushToBuildCache: Boolean = getBoolean("kotlin.build.cache.push", isTeamcityBuild)
val localBuildCacheEnabled: Boolean = getBoolean("kotlin.build.cache.local.enabled", !isTeamcityBuild)
val buildScanServer: String? = get("kotlin.build.scan.url") as String?
}
private const val extensionName = "kotlinBuildProperties"