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") } }