update endpoints

This commit is contained in:
Riley Park 2022-05-20 20:39:17 -07:00
parent 729ff50a6c
commit 1daa1948c1
3 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ kotlin {
}
repositories {
maven("https://papermc.io/repo/repository/maven-snapshots/") {
maven("https://repo.papermc.io/repository/maven-snapshots/") {
mavenContent {
includeModule("org.cadixdev", "mercury")
}

View file

@ -86,9 +86,9 @@ publishing {
repositories {
val url = if (isSnapshot) {
"https://papermc.io/repo/repository/maven-snapshots/"
"https://repo.papermc.io/repository/maven-snapshots/"
} else {
"https://papermc.io/repo/repository/maven-releases/"
"https://repo.papermc.io/repository/maven-releases/"
}
maven(url) {
credentials(PasswordCredentials::class)

View file

@ -31,7 +31,7 @@ const val MC_LIBRARY_URL = "https://libraries.minecraft.net/"
const val MC_MANIFEST_URL = "https://launchermeta.mojang.com/mc/game/version_manifest.json"
const val PAPER_MAVEN_REPO_URL = "https://papermc.io/repo/repository/maven-public/"
const val PAPER_MAVEN_REPO_URL = "https://repo.papermc.io/repository/maven-public/"
const val PARAM_MAPPINGS_CONFIG = "paramMappings"
const val REMAPPER_CONFIG = "remapper"