From e1b23455c1208f1984bb711a2ce383a305cc4deb Mon Sep 17 00:00:00 2001 From: waterghost-2046 <115847965+waterghost-2046@users.noreply.github.com> Date: Fri, 26 Jul 2024 00:55:00 +0900 Subject: [PATCH 1/5] Update README.md Provide clear guidance on dependency information and repository configuration to be added to the Maven configuration file --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ef4362f0..cc1209d15 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ See the [example](https://github.com/GeyserMC/MCProtocolLib/tree/master/example/ ## Adding as a Dependency -MCProtocolLib builds are published to the [Open Collaboration repository](https://repo.opencollab.dev/#/maven-snapshots/org/geysermc/mcprotocollib/protocol). +MCProtocolLib builds are published to the [Open Collaboration 'snapshot' repository](https://repo.opencollab.dev/#/maven-snapshots/org/geysermc/mcprotocollib/protocol). Follow the below steps to add MCProtocolLib as a dependency to your project. ### Maven @@ -19,7 +19,7 @@ Follow the below steps to add MCProtocolLib as a dependency to your project. opencollab - https://repo.opencollab.dev/maven-releases/ + https://repo.opencollab.dev/maven-snapshots/ ``` @@ -42,7 +42,7 @@ Follow the below steps to add MCProtocolLib as a dependency to your project. repositories { maven { name 'opencollab' - url 'https://repo.opencollab.dev/maven-releases/' + url 'https://repo.opencollab.dev/maven-snapshots/' } } ``` @@ -61,7 +61,7 @@ dependencies { ```kotlin repositories { - maven("https://repo.opencollab.dev/maven-releases/") { + maven("https://repo.opencollab.dev/maven-snapshots/") { name = "opencollab" } } From 53c9612f4cfcd91cf89484687b117ba8bc15b74f Mon Sep 17 00:00:00 2001 From: waterghost-2046 <115847965+waterghost-2046@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:57:20 +0900 Subject: [PATCH 2/5] Update README.md Co-authored-by: chris --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc1209d15..8da0c4ef8 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ dependencies { ```kotlin repositories { - maven("https://repo.opencollab.dev/maven-snapshots/") { + maven("https://repo.opencollab.dev/main/") { name = "opencollab" } } From 5496e6b30bf72a036d80f5d1f97380719582deb3 Mon Sep 17 00:00:00 2001 From: waterghost-2046 <115847965+waterghost-2046@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:57:26 +0900 Subject: [PATCH 3/5] Update README.md Co-authored-by: chris --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8da0c4ef8..43f3ff61f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Follow the below steps to add MCProtocolLib as a dependency to your project. opencollab - https://repo.opencollab.dev/maven-snapshots/ + https://repo.opencollab.dev/main/ ``` From fcb12da812181e18627f4841d63fc17d78c603bb Mon Sep 17 00:00:00 2001 From: waterghost-2046 <115847965+waterghost-2046@users.noreply.github.com> Date: Sun, 28 Jul 2024 11:57:33 +0900 Subject: [PATCH 4/5] Update README.md Co-authored-by: chris --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43f3ff61f..6a7187967 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Follow the below steps to add MCProtocolLib as a dependency to your project. repositories { maven { name 'opencollab' - url 'https://repo.opencollab.dev/maven-snapshots/' + url 'https://repo.opencollab.dev/main/' } } ``` From fe4b0580585076994443e3cba2acf17a0d86f3b1 Mon Sep 17 00:00:00 2001 From: waterghost-2046 <115847965+waterghost-2046@users.noreply.github.com> Date: Thu, 1 Aug 2024 22:14:06 +0900 Subject: [PATCH 5/5] Update README.md main, not snapshot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a7187967..1f903d7ab 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ See the [example](https://github.com/GeyserMC/MCProtocolLib/tree/master/example/ ## Adding as a Dependency -MCProtocolLib builds are published to the [Open Collaboration 'snapshot' repository](https://repo.opencollab.dev/#/maven-snapshots/org/geysermc/mcprotocollib/protocol). +MCProtocolLib builds are published to the [Open Collaboration repository](https://repo.opencollab.dev/#/maven-snapshots/org/geysermc/mcprotocollib/protocol). Follow the below steps to add MCProtocolLib as a dependency to your project. ### Maven