Tusky-App-Android/settings.gradle

33 lines
653 B
Groovy

pluginManagement {
repositories {
google()
gradlePluginPortal()
}
}
// 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()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
include ':app'