Gzip can take parameters, as described here. I would like to gzip some files from maven using ant-run, but the documentation does not explain how to pass parameters.
Is this possible, and if yes, how to proceed?
|
Gzip can take parameters, as described here. I would like to gzip some files from maven using ant-run, but the documentation does not explain how to pass parameters. Is this possible, and if yes, how to proceed?
| |||||
feedback
|
|
Since ant gzip task does not provide the necessary attributes for you to pass your arguments, you shall use the exec task :
In addition to this, since you want portability you should use conditional execution depending on the os. If you need more help let me know. | |||
|
feedback
|
|
The gzip (pack) task does not have any parameters except the source and destination file. A workaround to pass compression level to gzip is using the exec task and running gzip as a system command but it's not a portable solution. Don't forget that Ant is open source. The Gzip task uses JDK's | ||||
|
feedback
|