Hi,
I would like to produce a binary zip distribution of my project that would contain an uber jar and a set of scripts. Right now, I am using two descritors, first one for the uber jar, and the second for the zip that contains the uberjar + extra scripts and documentation. The problem is that both of these get deployed to maven repo, while I don't actually need the uberjar, only the distro. Is there any way to either:
- create the distro using one descriptor or
- avoid the uberjar being deployed?
Edit: I found this question regarding part 2, but perhaps there is an easier way to do it...