From aca21d0d4e66582d2734d58b545bf46276038574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?To=CF=80?= Date: Sun, 3 Dec 2023 13:18:17 +0100 Subject: [PATCH] update maven repo to maven.lavalink.dev --- README.md | 2 +- build.gradle.kts | 2 +- repositories.gradle | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 86478bf2b..83d623c47 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ LOGGING_LOGBACK_ROLLINGPOLICY_MAX_HISTORY ### Binary -Download binaries from the [Download Server](https://repo.arbjerg.dev/artifacts/lavalink/), [GitHub releases](https://github.com/lavalink-devs/Lavalink/releases) (specific versions prior to `v3.5` can be found in the [CI Server](https://ci.fredboat.com/viewLog.html?buildId=lastSuccessful&buildTypeId=Lavalink_Build&tab=artifacts&guest=1)) or [GitHub actions](https://github.com/lavalink-devs/Lavalink/actions). +Download binaries from the [Download Server](https://repo.lavalink.dev/artifacts/lavalink/), [GitHub releases](https://github.com/lavalink-devs/Lavalink/releases) (specific versions prior to `v3.5` can be found in the [CI Server](https://ci.fredboat.com/viewLog.html?buildId=lastSuccessful&buildTypeId=Lavalink_Build&tab=artifacts&guest=1)) or [GitHub actions](https://github.com/lavalink-devs/Lavalink/actions). Put an `application.yml` file in your working directory. ([Example here](LavalinkServer/application.yml.example)) diff --git a/build.gradle.kts b/build.gradle.kts index 834b3dd58..3d4b90afe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ allprojects { mavenCentral() // main maven repo mavenLocal() // useful for developing maven("https://m2.dv8tion.net/releases") - maven("https://maven.arbjerg.dev/releases") + maven("https://maven.lavalink.dev/releases") jcenter() maven("https://jitpack.io") // build projects directly from GitHub } diff --git a/repositories.gradle b/repositories.gradle index 7280cc431..77ad8b14a 100644 --- a/repositories.gradle +++ b/repositories.gradle @@ -24,8 +24,8 @@ publishing { if (findProperty("MAVEN_USERNAME") != null && findProperty("MAVEN_PASSWORD") != null) { println("Publishing to Maven Repo") repositories { - def snapshots = "https://maven.arbjerg.dev/snapshots" - def releases = "https://maven.arbjerg.dev/releases" + def snapshots = "https://maven.lavalink.dev/snapshots" + def releases = "https://maven.lavalink.dev/releases" maven { url = version.endsWith("SNAPSHOT") ? snapshots : releases