Skip to content

Commit

Permalink
Refactor archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
No-Eul committed Jun 26, 2024
1 parent 12d86b1 commit a7d4e09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,14 @@ tasks {
jar {
from("LICENSE.txt")
archiveBaseName.set("${project.property("archive_base_name")}")
archiveAppendix.set("fabric-mc${project.property("minecraft_version")}")
archiveAppendix.set("fabric")
archiveClassifier.set("mc${project.property("minecraft_version")}")
}

remapJar {
archiveBaseName.set("${project.property("archive_base_name")}")
archiveAppendix.set("fabric-mc${project.property("minecraft_version")}")
archiveAppendix.set("fabric")
archiveClassifier.set("mc${project.property("minecraft_version")}")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ loader_version = 0.15.11
mod_name = Crash Command
mod_id = crash-command
mod_version = 1.0.0
target_java_version = 21
target_java_version = 17
archive_base_name = CrashCommand

# Dependencies
Expand Down

0 comments on commit a7d4e09

Please sign in to comment.