I am creating a zip file using the gradle distribution plugin:
distributions {
installer {
baseName 'installer'
contents {
from 'src/main/installer'
}
}
}
Inside the zip the files are put into a folder called <basename>-<version>
e.g. installer-0.2.1-SNAPSHOT
, I want them to be put directly in the root of the zip, is that possible?