diff --git a/README.md b/README.md index ac6b4fc..d5008f5 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ If you wish to see the older version, please check out the [main branch readme]( This project and its files (code, assets, etc.), except where stated otherwise, is licensed under the GNU Lesser General Public License v3.0, see the [LICENSE](./LICENSE) file for more information. -[Polyfrost Documentation]: https://docs.polyfrost.cc/ +[Polyfrost Documentation]: https://docs.polyfrost.org/ [OneConfig]: https://github.com/Polyfrost/OneConfig [LaunchWrapper]: https://github.com/Mojang/legacy-launcher diff --git a/build.gradle.kts b/build.gradle.kts index 3a2fc50..a6ff467 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ allprojects { repositories { mavenCentral() - maven("https://repo.polyfrost.cc/releases") + maven("https://repo.polyfrost.org/releases") maven("https://maven.neoforged.net/releases") } @@ -30,7 +30,7 @@ allprojects { ).forEach { (channel, authMethod) -> maven { name = channel - setUrl("https://repo.polyfrost.cc/$channel") + setUrl("https://repo.polyfrost.org/$channel") credentials(PasswordCredentials::class) authentication { create(authMethod) diff --git a/settings.gradle.kts b/settings.gradle.kts index 4e634b8..6ceacce 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,7 +1,7 @@ pluginManagement { repositories { gradlePluginPortal() - maven("https://repo.polyfrost.cc/releases") + maven("https://repo.polyfrost.org/releases") } } diff --git a/stage0/src/main/java/org/polyfrost/oneconfig/loader/stage0/Stage0Loader.java b/stage0/src/main/java/org/polyfrost/oneconfig/loader/stage0/Stage0Loader.java index 5a7cedc..00b9320 100644 --- a/stage0/src/main/java/org/polyfrost/oneconfig/loader/stage0/Stage0Loader.java +++ b/stage0/src/main/java/org/polyfrost/oneconfig/loader/stage0/Stage0Loader.java @@ -20,7 +20,7 @@ * @since 1.1.0 */ public class Stage0Loader extends LoaderBase { - private static final String MAVEN_URL = "https://polyfrost.cc/"; + private static final String MAVEN_URL = "https://repo.polyfrost.org/"; private static final String MAVEN_REPO = "releases"; Stage0Loader(Capabilities capabilities) {