I have a directory structure like this:
Parent
|->A
|->B
|->*
and I need to zip it like so:
Dest
|->A.zip
|->B.zip
|->*.zip
Where the *
means that I don't know what are the names of the sub-folders.
How can I do this?
I'm working with a maven project but I don't mind using the antrun plugin