mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 23:36:47 +00:00
Bumps com.gradle.enterprise from 3.11.3 to 3.11.4. --- updated-dependencies: - dependency-name: com.gradle.enterprise dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
// https://github.com/google/play-services-plugins/issues/223
|
|
if (requested.id.id == "com.google.android.gms.oss-licenses-plugin") {
|
|
useModule("com.google.android.gms:oss-licenses-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// https://docs.gradle.com/enterprise/gradle-plugin/
|
|
plugins {
|
|
id "com.gradle.enterprise" version "3.11.4"
|
|
}
|
|
|
|
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("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
include ':iconloaderlib'
|
|
project(':iconloaderlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/iconloaderlib')
|
|
|
|
include ':searchuilib'
|
|
project(':searchuilib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/searchuilib')
|
|
|
|
include ':SystemUIShared'
|
|
include ':CompatLib'
|
|
include ':CompatLibVR'
|
|
include ':CompatLibVS'
|
|
include ':hidden-api'
|