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 3, 2023
1 parent aeb7f0e commit aca21d0
Show file tree
Hide file tree
Showing 3 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 @@ -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))

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
4 changes: 2 additions & 2 deletions repositories.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aca21d0

Please sign in to comment.