From b35d7bd67c569e47ed4e3884cb53f3e6dccbdf0a Mon Sep 17 00:00:00 2001 From: Michachatz <121869403+Michatec@users.noreply.github.com> Date: Tue, 24 Mar 2026 07:48:05 +0100 Subject: [PATCH] Add JitPack and Jetpack repositories to settings --- settings.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings.gradle b/settings.gradle index 0728c3f..08adb56 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,8 +3,10 @@ pluginManagement { google() mavenCentral() gradlePluginPortal() + maven { url 'https://jitpack.io' } } } + plugins { id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' } @@ -13,6 +15,7 @@ dependencyResolutionManagement { repositories { google() mavenCentral() + maven { url 'https://jetpack.io' } } }