aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts15
1 files changed, 15 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index bcb9fae4..56392b74 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -24,7 +24,22 @@ enableFeaturePreview("VERSION_CATALOGS")
// Plugin repositories
pluginManagement {
repositories {
+ mavenCentral()
gradlePluginPortal()
+ }
+}
+
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
mavenCentral()
+ google()
+ maven("https://jitpack.io") {
+ name = "JitPack"
+ content {
+ includeModule("com.github.haroldadmin", "WhatTheStack")
+ includeModule("com.github.open-keychain.open-keychain", "sshauthentication-api")
+ }
+ }
}
}