Skip to content

Commit

Permalink
Fix Maven publishing artifact ID (#2989)
Browse files Browse the repository at this point in the history
Change Maven publishing artifact ID to be of the form "sodium-<platform>-<version>" instead of just "fabric-<version>".
  • Loading branch information
douira authored Jan 19, 2025
1 parent ca4bbcb commit 1b54906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/multiloader-platform.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ publishing {
publications {
create<MavenPublication>("maven") {
groupId = project.group as String
artifactId = project.name as String
artifactId = rootProject.name + "-" + project.name
version = version

from(components["java"])
Expand Down

0 comments on commit 1b54906

Please sign in to comment.