From 61d3a8280ebdaf388bdadd6b46f4ad53865e2c86 Mon Sep 17 00:00:00 2001 From: wzp Date: Mon, 2 Sep 2024 20:00:41 +0800 Subject: [PATCH] docs: fix using the releases repository cannot build bug (using public group repository) --- README.md | 6 +++--- README_EN.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 203e336..ca10259 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ wzpmc-maven-releases - https://wzpmc.cn:90/repository/maven-releases + https://wzpmc.cn:90/repository/maven-public ``` @@ -50,7 +50,7 @@ ```groovy repositories { maven { - url "https://wzpmc.cn:90/repository/maven-releases" + url "https://wzpmc.cn:90/repository/maven-public" } } ``` @@ -59,7 +59,7 @@ repositories { ```kotlin repositories { maven { - url = uri("https://wzpmc.cn:90/repository/maven-releases") + url = uri("https://wzpmc.cn:90/repository/maven-public") } } ``` diff --git a/README_EN.md b/README_EN.md index 942ff52..a775817 100644 --- a/README_EN.md +++ b/README_EN.md @@ -39,7 +39,7 @@ In your `pom.xml`, add the following repository configuration: wzpmc-maven-releases - https://wzpmc.cn:90/repository/maven-releases + https://wzpmc.cn:90/repository/maven-public ``` @@ -50,7 +50,7 @@ In your `pom.xml`, add the following repository configuration: ```groovy repositories { maven { - url "https://wzpmc.cn:90/repository/maven-releases" + url "https://wzpmc.cn:90/repository/maven-public" } } ``` @@ -59,7 +59,7 @@ repositories { ```kotlin repositories { maven { - url = uri("https://wzpmc.cn:90/repository/maven-releases") + url = uri("https://wzpmc.cn:90/repository/maven-public") } } ```