Skip to content

Commit

Permalink
Tweak buildscript
Browse files Browse the repository at this point in the history
... a tad to name the built jar more clearly
  • Loading branch information
kd8lvt committed Jan 12, 2025
1 parent 095fda8 commit b2b0833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = project.mod_version
group = project.maven_group

base {
archivesName = project.archives_base_name
archivesName = "${project.archives_base_name}-${project.game_version}"
}

repositories {
Expand Down Expand Up @@ -92,7 +92,7 @@ jar {
publishing {
publications {
create("mavenJava", MavenPublication) {
artifactId = project.archives_base_name
artifactId = project.base.archivesName.get()
from components.java
}
}
Expand Down

0 comments on commit b2b0833

Please sign in to comment.