Merge pull request #6460 from HenrikJannsen/remove_unneeded_gradle_tasks

Deactivate shadowDistTar and shadowDistZip tasks
This commit is contained in:
Christoph Atteneder 2022-12-14 10:18:34 +01:00 committed by GitHub
commit 6fa2ffb3c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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']
@ -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)