-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for creation of non-compressed jars #38128
Comments
Could you please elaborate a little more about what you have in mind? |
I have a Quarkus project that produces *-runner.jar and I was trying to disable compression for this jar to make some experiments. I found that setting compress=false for maven-jar-plugin does not affect the -runner.jar. The compression is set by quarkus-fs-util and is not adjustable. |
Maybe I ask what the use case for an uncompressed jar is? |
test the processing speed on a low-resource platform |
Understood. I guess we could have a version of WDYT @aloubyansky? If you think it makes sense, I can go ahead and add it and then add a Quarkus property to control this. @Sanne this is something you might interested in as well. |
Sounds good to me, thanks! |
Cool, I'll take care of this this week. |
This is done by setting `quarkus.package.compress-jar` to `false`. This is a niche setting, but it can lead to slightly reduced boot time when using uber-jar packaging Closes: quarkusio#38128
#38136 adds this capability |
This is done by setting `quarkus.package.compress-jar` to `false`. This is a niche setting, but it can lead to slightly reduced boot time when using uber-jar packaging Closes: quarkusio#38128
This is done by setting `quarkus.package.compress-jar` to `false`. This is a niche setting, but it can lead to slightly reduced boot time when using uber-jar packaging Closes: quarkusio#38128
Introduce option to create uncompressed jars
Description
Please add option to tune uber-jar compression
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: