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.
32 lines
653 B
32 lines
653 B
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'
|
|
|