How to add a prefix directory so that when unpacking the zip containing my RCP application, I get a directory containing the contents?
When tycho supports and archives my rcp application, it zips up the target / products / my.rcp.app / linux / gtk / x86_64 / files without a directory prefix.
Current zip content:
Desired zip content:
- ./MYAPP/functions
- ./MyApp/ plugins
- ...
When the user unpacks the zip, I would like to create an application directory. I looked at tycho files, but neither archiving nor materialization seems to be the right place to configure it. I could always use antrun or the build plugin to do the job, but that doesn't seem like the right maven way to solve the problem.
Please let me know how to add a prefix directory.
source share