Skip to content

Commit

Permalink
update maven repo to maven.lavalink.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 committed Dec 1, 2023
1 parent f2fd260 commit ebdb88f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ subprojects {
configure<PublishingExtension> {
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 {
Expand All @@ -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")
}
}

Expand Down

0 comments on commit ebdb88f

Please sign in to comment.