2023-02-04 19:58:53 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2023-11-23 09:41:46 +01:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-04 19:58:53 +01:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 12:28:13 +01:00
|
|
|
plugins {
|
2024-06-13 18:42:34 +02:00
|
|
|
id 'com.gradle.develocity' version '3.17.5'
|
2024-02-23 12:28:13 +01:00
|
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
|
|
|
|
}
|
|
|
|
|
2024-04-04 19:25:25 +02:00
|
|
|
def isCI = providers.environmentVariable("CI").present
|
2024-02-23 14:41:33 +01:00
|
|
|
|
2024-04-04 19:25:25 +02:00
|
|
|
develocity {
|
2024-02-23 14:41:33 +01:00
|
|
|
buildScan {
|
2024-04-04 19:25:25 +02:00
|
|
|
termsOfUseUrl = "https://gradle.com/terms-of-service"
|
|
|
|
termsOfUseAgree = "yes"
|
|
|
|
publishing.onlyIf { isCI }
|
2024-02-23 14:41:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-04 19:58:53 +01:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
2023-11-23 09:41:46 +01:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex(".*google.*")
|
|
|
|
includeGroupByRegex(".*android.*")
|
|
|
|
}
|
|
|
|
}
|
2023-02-04 19:58:53 +01:00
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
|
|
|
|
|
2017-01-03 02:37:38 +01:00
|
|
|
include ':app'
|