aboutsummaryrefslogtreecommitdiff
path: root/privateProjectProperties.init.gradle.kts
blob: 95998c726f8f89b163fab095896625137103dee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.util.Properties

allprojects {
    val file = project.file(".gradle/private.properties")
    if (file.exists()) {
        val properties = Properties()
        properties.load(file.inputStream())
        properties.forEach { (k, v) ->
			(this.properties as MutableMap<String, String>).put(k as String, v as String)
        }
    }
}