summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
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")