Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions quarkus/distribution/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,16 @@ distributions {
contents {
// Copy admin distribution contents
into("admin") {
from(adminDistribution)
from(adminDistribution) {
exclude("quarkus-app-dependencies.txt")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is probably preferable to do this excluding in the server and admin modules.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tried to exclude it in server and admin module. Didn't find a clean solution. It may not be worth it. Let me know if you got better solutioin.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still think this is sub-optimal from the gradle build perspective, but I do not have a solution ATM, so I'm fine merging this change "as is" unless someone has a solution handy.

}
}

// Copy server distribution contents
into("server") {
from(serverDistribution)
from(serverDistribution) {
exclude("quarkus-app-dependencies.txt")
}
}

// Copy scripts to bin directory
Expand Down
Loading