From fb8141af679196d0fb788d1e016c5dadfbb4406f Mon Sep 17 00:00:00 2001 From: ACh Sulfate Date: Sat, 23 Nov 2024 22:12:22 +0800 Subject: [PATCH] chore: deps: add workaround for jitpack failures --- settings.gradle.kts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 301184e30a..f757193cf1 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -34,6 +34,16 @@ dependencyResolutionManagement { } } mavenCentral() + maven("https://maven.tmpfs.dev/repository/maven-public/") { + // I have no idea why sometimes jitpack.io is not working for + // "com.github.plattysoft:Leonids:1746429" + // So I added this repo as a backup. + // I have encountered this wired issue twice in 2024. + // The jitpack.io says "Not found" or "File not found. Build ok". + content { + includeGroup("com.github.plattysoft") + } + } } }