From 9d00ea700749e3c2f1a3f0c48c255f3b558b36b7 Mon Sep 17 00:00:00 2001 From: Jeo Date: Thu, 19 Feb 2026 17:58:51 -0600 Subject: [PATCH 1/2] Update old maven url to new .org --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ac5b993..46897cc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A simple and easy to use API for Bolt version 1.6 and above. repositories { maven { name = "refine-public" - url = uri("https://maven.refinedev.xyz/public-repo/") + url = uri("https://maven.refinedev.org/public-repo/") } } @@ -21,7 +21,7 @@ dependencies { refine-public - https://maven.refinedev.xyz/public-repo/ + https://maven.refinedev.org/public-repo/ From 683a273552bcfac7e151d76a423c22503e1c5000 Mon Sep 17 00:00:00 2001 From: Jeo Date: Thu, 19 Feb 2026 18:09:05 -0600 Subject: [PATCH 2/2] Update build.gradle.kts Maven URL --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2ca8075..31d1bc5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ repositories { mavenCentral() mavenLocal() - maven("https://maven.refinedev.xyz/public-repo") + maven("https://maven.refinedev.org/public-repo") } java { @@ -59,7 +59,7 @@ publishing { maven { name = "refine-public" - url = uri("https://maven.refinedev.xyz/public-repo") + url = uri("https://maven.refinedev.org/public-repo") credentials { username = findProperty("mavenUsername") as String? ?: "" password = findProperty("mavenPassword") as String? ?: ""