diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-29 01:41:04 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-03 12:59:56 +0530 |
commit | 553a9e849263f3f86c2fecfdf5b98b8eb93f2fba (patch) | |
tree | 5033ccc2a3419c70aa0ebc2e664d9bcbe419014a /build-logic | |
parent | 1ade4eaf645b4272ac25f2aa055c1368acd43da7 (diff) |
build-logic: configure repositories to include Google Maven
Diffstat (limited to 'build-logic')
-rw-r--r-- | build-logic/settings.gradle.kts | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/build-logic/settings.gradle.kts b/build-logic/settings.gradle.kts index 54fd3070..73c7348f 100644 --- a/build-logic/settings.gradle.kts +++ b/build-logic/settings.gradle.kts @@ -1,10 +1,11 @@ -pluginManagement { - repositories { - google() - mavenCentral() - gradlePluginPortal() - } -} +/* + * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. + * SPDX-License-Identifier: GPL-3.0-only + */ + +rootProject.name = "build-logic" + +enableFeaturePreview("VERSION_CATALOGS") dependencyResolutionManagement { repositories { @@ -14,10 +15,6 @@ dependencyResolutionManagement { versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } } } -rootProject.name = "build-logic" - -enableFeaturePreview("VERSION_CATALOGS") - include("android-plugins") include("automation-plugins") |