Skip to content

Commit

Permalink
jvm-apps: disable unnecessary distZip task
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnovais committed Feb 6, 2025
1 parent 3b5f159 commit 45eada1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,14 @@ plugins {
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
}

tasks.distTar {
// we don't use the tar distribution
onlyIf { false }
}

tasks.distZip {
// we only need the zip distribution to build the docker image
// we explicitly call distZip to build the zip distribution
enabled = false
}
5 changes: 0 additions & 5 deletions coordinator/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,6 @@ distributions {
}
}

tasks.distTar {
// we don't need the tar distribution
onlyIf { false }
}

run {
workingDir = rootProject.projectDir
jvmArgs = [
Expand Down

0 comments on commit 45eada1

Please sign in to comment.