Add JitPack and Jetpack repositories to settings

This commit is contained in:
Michachatz
2026-03-24 07:48:05 +01:00
committed by GitHub
parent d3dd098639
commit b35d7bd67c

View File

@@ -3,8 +3,10 @@ pluginManagement {
google() google()
mavenCentral() mavenCentral()
gradlePluginPortal() gradlePluginPortal()
maven { url 'https://jitpack.io' }
} }
} }
plugins { plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0' id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
} }
@@ -13,6 +15,7 @@ dependencyResolutionManagement {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
maven { url 'https://jetpack.io' }
} }
} }