Build: Add build cache user and password properties to BuildProperties

This commit is contained in:
Vyacheslav Gerasimov
2019-12-18 20:57:53 +03:00
parent 1ee54d74d0
commit e43ea7e183
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ plugins {
}
group = "org.jetbrains.kotlin"
version = "0.0.6"
version = "0.0.7"
repositories {
mavenCentral()
@@ -92,6 +92,10 @@ class KotlinBuildProperties(
val localBuildCacheEnabled: Boolean = getBoolean("kotlin.build.cache.local.enabled", !isTeamcityBuild)
val buildScanServer: String? = get("kotlin.build.scan.url") as String?
val buildCacheUser: String? = get("kotlin.build.cache.user") as String?
val buildCachePassword: String? = get("kotlin.build.cache.password") as String?
}
private const val extensionName = "kotlinBuildProperties"