37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
/*
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
exclusiveContent {
|
|
forRepository(::google)
|
|
filter {
|
|
includeGroup("androidx.databinding")
|
|
includeGroup("com.android")
|
|
includeGroup("com.android.tools")
|
|
includeGroup("com.android.tools.analytics-library")
|
|
includeGroup("com.android.tools.build")
|
|
includeGroup("com.android.tools.build.jetifier")
|
|
includeGroup("com.android.databinding")
|
|
includeGroup("com.android.tools.ddms")
|
|
includeGroup("com.android.tools.layoutlib")
|
|
includeGroup("com.android.tools.lint")
|
|
includeGroup("com.android.tools.utp")
|
|
includeGroup("com.google.testing.platform")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
|
|
}
|
|
|
|
include("android-plugins")
|
|
|
|
include("automation-plugins")
|
|
|
|
include("kotlin-plugins")
|