Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Do you want to use the ant task gzip or the external utility gzip? – FailedDev Nov 1 '11 at 19:38
@FailedDev As long as I can pass parameters (such as compression level for example), it does not matter if I can use it from maven. – JVerstry Nov 1 '11 at 19:54

2 Answers

up vote 3 down vote accepted

Since ant gzip task does not provide the necessary attributes for you to pass your arguments, you shall use the exec task :

<target name="runGZip">
  <exec executable="gzip">
    <arg value="bla"/>
    ....
  </exec>
</target>

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.

share|improve this answer

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 GZIPOutputStream. It still doesn't have any method to set the compression level but it's possible to create a GZIPOutputStream subclass which supports this. After that you can create a custom gzip task (based on the original code) which uses the subclassed GZIPOutputStream instead of GZIPOutputStream. The task can pass the compression level setting from the Ant XML to the stream.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.