Skip to content

Commit

Permalink
Fix missing requires
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaz492 committed Aug 3, 2023
1 parent b68a8ee commit 6c46ee9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,16 @@ publishMods {
requires {
slug = "fabric-api"
}
requires {
slug = "architectury-api"
}
}

curseforge("curseforgeForge") {
from(curseForgeOptions, forgeOptions)
requires {
slug = "architectury-api"
}
}

if (providers.environmentVariable("MODRINTH_TOKEN").getOrNull() != null) {
Expand All @@ -94,10 +100,16 @@ publishMods {
requires {
slug = "fabric-api"
}
requires {
slug = "architectury-api"
}
}

modrinth("modrinthForge") {
from(modrinthOptions, forgeOptions)
requires {
slug = "architectury-api"
}
}
}

Expand Down

0 comments on commit 6c46ee9

Please sign in to comment.