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.
43 lines
946 B
43 lines
946 B
pluginManagement { |
|
repositories { |
|
google { |
|
content { |
|
includeGroupByRegex(".*google.*") |
|
includeGroupByRegex(".*android.*") |
|
} |
|
} |
|
gradlePluginPortal() |
|
} |
|
} |
|
|
|
plugins { |
|
id 'com.gradle.develocity' version '4.0.1' |
|
} |
|
|
|
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'
|
|
|