Skip to content

Commit

Permalink
Fix maven repositories, update mod publish plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
MerchantPug committed May 14, 2024
1 parent 6ffd249 commit ff36b95
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ publishing {
}
repositories {
maven {
name = "merchantpug"
url = "https://maven.merchantpug.net/releases"
name = "greenhouse"
url = "https://maven.greenhouseteam.dev/releases"
credentials {
username System.getenv('MAVEN_USERNAME')
password System.getenv('MAVEN_PASSWORD')
Expand Down
4 changes: 2 additions & 2 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ publishing {
}
repositories {
maven {
name = "merchantpug"
url = "https://maven.merchantpug.net/releases"
name = "greenhouse"
url = "https://maven.greenhouseteam.dev/releases"
credentials {
username System.getenv('MAVEN_USERNAME')
password System.getenv('MAVEN_PASSWORD')
Expand Down
4 changes: 2 additions & 2 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ publishing {
}
repositories {
maven {
name = "merchantpug"
url = "https://maven.merchantpug.net/releases"
name = "greenhouse"
url = "https://maven.greenhouseteam.dev/releases"
credentials {
username System.getenv('MAVEN_USERNAME')
password System.getenv('MAVEN_PASSWORD')
Expand Down
2 changes: 1 addition & 1 deletion publish/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "me.modmuss50.mod-publish-plugin" version "0.4.5"
id("me.modmuss50.mod-publish-plugin") version "0.5.1"
}

evaluationDependsOn(":common")
Expand Down

0 comments on commit ff36b95

Please sign in to comment.