Skip to content

Commit

Permalink
Fix up fabriquilt QMJ file
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Nov 26, 2023
1 parent ba549a5 commit 5da291d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ modsDotGroovy {
multiloader {
forge = [project(':neoforge')]
fabric = [project(':fabriquilt')]
quilt = []
quilt = [project(':fabriquilt')]
}
}

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/groovy/convention.shared.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ publishing {
sourcesJar {
dependsOn(configurations.rootProjectLicense)
from(configurations.rootProjectLicense) {
rename { "${it}_${mod_name}" }
rename { "${it}_${artifact_id}" }
}
}

jar {
dependsOn(configurations.rootProjectLicense)
from(configurations.rootProjectLicense) {
rename { "${it}_${mod_name}" }
rename { "${it}_${artifact_id}" }
}

manifest {
Expand Down

0 comments on commit 5da291d

Please sign in to comment.