From 595f1689d8c0a9bdf17c3ad6785bacd2ce76d5a5 Mon Sep 17 00:00:00 2001 From: Presti <53257574+DxsSucuk@users.noreply.github.com> Date: Fri, 14 Nov 2025 20:09:37 +0100 Subject: [PATCH] chore: Update README with updated Repository and support list. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c0fd339..2ab8dda 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@

Build License -Minecraft Versions +Minecraft Versions

* [Features](#features) @@ -54,14 +54,14 @@ or [maven-shade-plugin](https://maven.apache.org/plugins/maven-shade-plugin/) (f ```xml - catcoder-snapshots - https://catcoder.pl.ua/snapshots + jitpack.io + https://jitpack.io ``` ```xml - me.catcoder - bukkit-sidebar + com.github.CatCoderr + ProtocolSidebar 6.2.10-SNAPSHOT ``` @@ -70,12 +70,12 @@ or [maven-shade-plugin](https://maven.apache.org/plugins/maven-shade-plugin/) (f ```groovy repositories { - maven { url 'https://catcoder.pl.ua/snapshots' } + maven { url 'https://jitpack.io' } } ``` ```groovy dependencies { - implementation 'me.catcoder:bukkit-sidebar:6.2.10-SNAPSHOT' + implementation 'com.github.CatCoderr:ProtocolSidebar:6.2.10-SNAPSHOT' } ``` @@ -83,12 +83,12 @@ dependencies { ```kotlin repositories { - maven("https://catcoder.pl.ua/snapshots") + maven("https://jitpack.io") } ``` ```kotlin dependencies { - implementation("me.catcoder:bukkit-sidebar:6.2.10-SNAPSHOT") + implementation("com.github.CatCoderr:ProtocolSidebar:6.2.10-SNAPSHOT") } ```