Files
AppErrorsTracking/settings.gradle.kts
fankesyooni fb388ee783 chore: bump plugin versions
- bump "com.highcapable.sweetdependency" version to 1.0.3
- bump "com.highcapable.sweetproperty" version to 1.0.4
2023-11-04 03:40:41 +08:00

29 lines
766 B
Plaintext

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.3"
id("com.highcapable.sweetproperty") version "1.0.4"
}
sweetProperty {
global {
all {
permanentKeyValues(
"GITHUB_CI_COMMIT_ID" to "",
"APP_CENTER_SECRET" to ""
)
generateFrom(ROOT_PROJECT, SYSTEM_ENV)
}
sourcesCode {
propertiesFileNames(".secret/secret.properties")
includeKeys("GITHUB_CI_COMMIT_ID", "APP_CENTER_SECRET")
}
}
rootProject { all { isEnable = false } }
}
rootProject.name = "AppErrorsTracking"
include(":module-app", ":demo-app")