Skip to content

Commit

Permalink
fix: maven publishing URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
desht committed Mar 28, 2024
1 parent 98c6236 commit a01f729
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ publishing {
repositories {
if (ENV.FTB_MAVEN_TOKEN) {
maven {
url "https://maven.ftb.dev/release"
url "https://maven.ftb.dev/releases"
credentials {
username = "ftb"
password = "${ENV.FTB_MAVEN_TOKEN}"
Expand All @@ -36,7 +36,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "ftb"
password = "${ENV.SAPS_TOKEN}"
Expand Down
4 changes: 2 additions & 2 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ publishing {
repositories {
if (ENV.FTB_MAVEN_TOKEN) {
maven {
url "https://maven.ftb.dev/release"
url "https://maven.ftb.dev/releases"
credentials {
username = "ftb"
password = "${ENV.FTB_MAVEN_TOKEN}"
Expand All @@ -100,7 +100,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "ftb"
password = "${ENV.SAPS_TOKEN}"
Expand Down
4 changes: 2 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ publishing {
repositories {
if (ENV.FTB_MAVEN_TOKEN) {
maven {
url "https://maven.ftb.dev/release"
url "https://maven.ftb.dev/releases"
credentials {
username = "ftb"
password = "${ENV.FTB_MAVEN_TOKEN}"
Expand All @@ -145,7 +145,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "ftb"
password = "${ENV.SAPS_TOKEN}"
Expand Down

0 comments on commit a01f729

Please sign in to comment.