aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-11-29 01:41:04 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2021-12-03 12:59:56 +0530
commit553a9e849263f3f86c2fecfdf5b98b8eb93f2fba (patch)
tree5033ccc2a3419c70aa0ebc2e664d9bcbe419014a /settings.gradle.kts
parent1ade4eaf645b4272ac25f2aa055c1368acd43da7 (diff)
build-logic: configure repositories to include Google Maven
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts43
1 files changed, 22 insertions, 21 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index d2dbc8ed..58682180 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -3,33 +3,14 @@
* SPDX-License-Identifier: GPL-3.0-only
*/
-// Modules
-include(":app")
-
-include(":autofill-parser")
-
-include(":crypto-common")
-
-include(":crypto-pgpainless")
-
-include(":format-common")
-
-include(":openpgp-ktx")
-
-include(":dependency-sync")
-
-// Experimental features
-enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
-
-enableFeaturePreview("VERSION_CATALOGS")
-
// Plugin repositories
pluginManagement {
repositories {
+ includeBuild("build-logic")
+ google()
mavenCentral()
gradlePluginPortal()
}
- includeBuild("build-logic")
}
dependencyResolutionManagement {
@@ -46,3 +27,23 @@ dependencyResolutionManagement {
}
}
}
+
+// Experimental features
+enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
+
+enableFeaturePreview("VERSION_CATALOGS")
+
+// Modules
+include("app")
+
+include("autofill-parser")
+
+include("crypto-common")
+
+include("crypto-pgpainless")
+
+include("format-common")
+
+include("openpgp-ktx")
+
+include(":dependency-sync")