diff --git a/build.gradle b/build.gradle index 3736647..8317eff 100644 --- a/build.gradle +++ b/build.gradle @@ -42,13 +42,13 @@ subprojects { publishing { repositories { maven { - url = uri("https://git.netherite.gg/api/packages/Netherite-Public/maven") - credentials(HttpHeaderCredentials) { - name "Authorization" - value "token ${project.properties["netherite.git.packages.token"]}" - } + name = "netheriteRepo" + url = uri("https://repo.netherite.gg/netherite") + + credentials(PasswordCredentials) + authentication { - header(HttpHeaderAuthentication) + basic(BasicAuthentication) } } }