Skip to content

Commit

Permalink
Change artifactId to be the mod id
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Oct 16, 2023
1 parent cefe4da commit bafc312
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ publishing {
publications {
mavenJava(MavenPublication) {
groupId project.group
artifactId project.archivesBaseName
artifactId "${mod_id}"
version project.version
from components.java

Expand Down
2 changes: 1 addition & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ publishing {
publications {
mavenJava(MavenPublication) {
groupId project.group
artifactId project.archivesBaseName
artifactId "${mod_id}"
version project.version
from components.java

Expand Down
2 changes: 1 addition & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ publishing {
// We must use artifact jar to ensure the Forge dependency is excluded from the pom, breaking fg.deobf()
artifact jar
groupId project.group
artifactId project.archivesBaseName
artifactId "${mod_id}"
version project.version

pom {
Expand Down

0 comments on commit bafc312

Please sign in to comment.