1
0
mirror of https://github.com/tuskyapp/Tusky synced 2025-01-07 22:34:39 +01:00
Tusky-App-Android/settings.gradle

33 lines
653 B
Groovy
Raw Normal View History

2023-01-13 08:18:00 +01:00
pluginManagement {
repositories {
google()
gradlePluginPortal()
}
}
2023-01-13 08:25:32 +01:00
// https://docs.gradle.com/enterprise/gradle-plugin/
plugins {
id "com.gradle.enterprise" version "3.12.2"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
}
2023-01-13 08:18:00 +01:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
2023-01-13 08:22:16 +01:00
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
2017-01-03 02:37:38 +01:00
include ':app'