mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1019 B
44 lines
1019 B
pluginManagement { |
|
repositories { |
|
google { |
|
content { |
|
includeGroupByRegex(".*google.*") |
|
includeGroupByRegex(".*android.*") |
|
} |
|
} |
|
gradlePluginPortal() |
|
} |
|
} |
|
|
|
plugins { |
|
id 'com.gradle.develocity' version '3.17' |
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0' |
|
} |
|
|
|
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'
|
|
|