Skip to content

Commit

Permalink
Update gradle build files.
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorfromhell committed Jun 14, 2024
1 parent b85592a commit eb5292e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ tasks {
targetCompatibility = "17"
}

jar {
dependsOn(shadowJar)
archiveFileName = "original-TNIL-Bukkit-${project.version}.jar"
}

shadowJar {
archiveFileName = "TNIL-Bukkit-${project.version}-shadow.jar"
archiveFileName = "TNIL-Bukkit-${project.version}.jar"

dependencies {
include(dependency(":TNIL-Core"))
Expand Down
7 changes: 6 additions & 1 deletion TNIL-Sponge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ tasks {
targetCompatibility = "17"
}

jar {
dependsOn(shadowJar)
archiveFileName = "original-TNIL-Sponge-${project.version}.jar"
}

shadowJar {
archiveFileName = "TNIL-Sponge-${project.version}-shadow.jar"
archiveFileName = "TNIL-Sponge-${project.version}.jar"

dependencies {
include(dependency(":TNIL-Core"))
Expand Down

0 comments on commit eb5292e

Please sign in to comment.