Skip to content

Commit

Permalink
Merge pull request #6460 from HenrikJannsen/remove_unneeded_gradle_tasks
Browse files Browse the repository at this point in the history
Deactivate shadowDistTar and shadowDistZip tasks
  • Loading branch information
ripcurlx authored Dec 14, 2022
2 parents 71d6e12 + fb1e731 commit 6fa2ffb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,9 @@ configure(project(':desktop')) {
apply plugin: 'org.openjfx.javafxplugin'
apply from: 'package/package.gradle'

shadowDistTar.enabled = false
shadowDistZip.enabled = false

javafx {
version = "$javafxVersion"
modules = ['javafx.controls', 'javafx.fxml']
Expand Down Expand Up @@ -481,6 +484,9 @@ configure(project(':desktop')) {
configure(project(':seednode')) {
apply plugin: 'com.github.johnrengelman.shadow'

shadowDistTar.enabled = false
shadowDistZip.enabled = false

jar.manifest.attributes(
"Implementation-Title": project.name,
"Implementation-Version": version)
Expand Down

0 comments on commit 6fa2ffb

Please sign in to comment.