From ad5d459f7d823f115073c132ff75fb67e4069bf9 Mon Sep 17 00:00:00 2001 From: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com> Date: Fri, 18 Jul 2025 08:10:09 +0800 Subject: [PATCH] [ci skip] Update maven repo --- README.md | 4 ++-- build.gradle.kts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3fcfcb5a..5822e796 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Building a Paperclip JAR for distribution: ```xml leafmc - https://maven.nostal.ink/repository/maven-snapshots/ + https://maven.leafmc.one/snapshots/ ``` ```xml @@ -69,7 +69,7 @@ Building a Paperclip JAR for distribution: ```kotlin repositories { maven { - url = uri("https://maven.nostal.ink/repository/maven-snapshots/") + url = uri("https://maven.leafmc.one/snapshots/") } } diff --git a/build.gradle.kts b/build.gradle.kts index d9dee16d..f80cc120 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/" -val leafMavenPublicUrl = "https://maven.nostal.ink/repository/maven-snapshots/" +val leafMavenPublicUrl = "https://maven.leafmc.one/snapshots/" repositories { mavenCentral() @@ -47,7 +47,7 @@ subprojects { repositories { mavenCentral() maven(paperMavenPublicUrl) - maven("https://repo.bsdevelopment.org/releases/") // Leaf - Leaf config - ConfigurationMaster-API + maven(leafMavenPublicUrl) } }