I have a property, app.version, which is set to 1.2.0 (and, of course, always changing) and need to create zip file with name "something-ver-1_2_0". Is this possible?
|
You can use the pathconvert task to replace "." with "_" and assign to a new property:
|
||||
|
|
|
Since the property
changing Edit: Understood better your question from the feedback. Unfortunately ant does not have string manipulation tasks, you need to write you own task for this. Here is a close example. |
|||||
|
|
Another approach is to filter the version number from a file to a property using a regular expression, as suggested in this example:
|
||||
|
|
|
It's possible using the zip task
For more information about the zip task: http://ant.apache.org/manual/Tasks/zip.html |
||||
|