Skip to content

Commit

Permalink
fix Modrinth publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSpring committed May 20, 2024
1 parent b45a783 commit 51db004
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ dependencies {
modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") {
exclude(group: "net.fabricmc.fabric-api")
}

modRuntimeOnly "maven.modrinth:ferrite-core:5.1.0-fabric"
modRuntimeOnly "maven.modrinth:lazydfu:0.1.3"
modRuntimeOnly "maven.modrinth:starlight:1.1.1+1.19"
modRuntimeOnly "maven.modrinth:sodium:mc1.19.3-0.4.9"
}

processResources {
Expand Down Expand Up @@ -130,7 +125,7 @@ modrinth {
projectId = "nicknamer" // This can be the project ID or the slug. Either will work!
versionNumber = "${project.mod_version}+${project.minecraft_version}" // You don't need to set this manually. Will fail if Modrinth has this version already
versionType = "release" // This is the default -- can also be `beta` or `alpha`
uploadFile = jar // With Loom, this MUST be set to `remapJar` instead of `jar`!
uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
gameVersions = ["1.19.3", "1.19.4"] // Must be an array, even with only one version
loaders = ["fabric"] // Must also be an array - no need to specify this if you're using Loom or ForgeGradle
dependencies { // A special DSL for creating dependencies
Expand Down

0 comments on commit 51db004

Please sign in to comment.