From badf536ab30ed7f8fc3b25f2e3475498f5cd86b1 Mon Sep 17 00:00:00 2001 From: topi314 Date: Fri, 1 Dec 2023 09:37:21 +0100 Subject: [PATCH] update maven repo to maven.lavalink.dev --- README.md | 2 +- build.gradle.kts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e5a6cd12..36220b0d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ number: [![Maven Central](https://img.shields.io/maven-central/v/dev.arbjerg/lav * Artifact: **dev.arbjerg:lavaplayer:x.y.z** Snapshots are published -to https://maven.arbjerg.dev/snapshots & https://s01.oss.sonatype.org/content/repositories/snapshots +to https://maven.lavalink.dev/snapshots & https://s01.oss.sonatype.org/content/repositories/snapshots Using in Gradle: diff --git a/build.gradle.kts b/build.gradle.kts index e5d364c9..62a10470 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -39,8 +39,8 @@ subprojects { configure { if (findProperty("MAVEN_PASSWORD") != null && findProperty("MAVEN_USERNAME") != null) { repositories { - val snapshots = "https://maven.arbjerg.dev/snapshots" - val releases = "https://maven.arbjerg.dev/releases" + val snapshots = "https://maven.lavalink.dev/snapshots" + val releases = "https://maven.lavalink.dev/releases" maven(if (release) releases else snapshots) { credentials { @@ -50,7 +50,7 @@ subprojects { } } } else { - logger.lifecycle("Not publishing to maven.arbjerg.dev because credentials are not set") + logger.lifecycle("Not publishing to maven.lavalink.dev because credentials are not set") } }