2021-11-28 20:11:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
2022-03-13 12:11:01 +00:00
|
|
|
@file:Suppress("UnstableApiUsage")
|
2021-11-28 20:11:04 +00:00
|
|
|
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
|
2021-11-09 16:03:59 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
|
|
|
|
}
|
|
|
|
|
|
|
|
include("android-plugins")
|
|
|
|
|
|
|
|
include("automation-plugins")
|
|
|
|
|
|
|
|
include("kotlin-plugins")
|