1
0
mirror of https://github.com/tuskyapp/Tusky synced 2025-01-26 16:55:38 +01:00
Tusky-App-Android/settings.gradle
Konrad Pozniak 03457db668
remove foojay-resolver-convention (#4807)
If I remember correctly, it was only added to fix Bitrise builds, and we
don't use Bitrise anymore
2024-12-22 10:46:39 +01:00

44 lines
945 B
Groovy

pluginManagement {
repositories {
google {
content {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
gradlePluginPortal()
}
}
plugins {
id 'com.gradle.develocity' version '3.19'
}
def isCI = providers.environmentVariable("CI").present
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
publishing.onlyIf { isCI }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google {
content {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
include ':app'