2023-02-05 02:58:53 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2023-11-23 16:41:46 +08:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 02:58:53 +08:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 19:28:13 +08:00
|
|
|
plugins {
|
2024-12-22 10:35:58 +01:00
|
|
|
id 'com.gradle.develocity' version '3.19'
|
2024-02-23 19:28:13 +08:00
|
|
|
}
|
|
|
|
|
2024-04-05 01:25:25 +08:00
|
|
|
def isCI = providers.environmentVariable("CI").present
|
2024-02-23 21:41:33 +08:00
|
|
|
|
2024-04-05 01:25:25 +08:00
|
|
|
develocity {
|
2024-02-23 21:41:33 +08:00
|
|
|
buildScan {
|
2024-04-05 01:25:25 +08:00
|
|
|
termsOfUseUrl = "https://gradle.com/terms-of-service"
|
|
|
|
termsOfUseAgree = "yes"
|
|
|
|
publishing.onlyIf { isCI }
|
2024-02-23 21:41:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-05 02:58:53 +08:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
2023-11-23 16:41:46 +08:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 02:58:53 +08:00
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
|
|
|
|
|
2017-01-02 20:37:38 -05:00
|
|
|
include ':app'
|