I am creating a zip file using the gradle distribution plugin:
distributions {
installer {
baseName 'installer'
contents {
from 'src/main/installer'
}
}
}
Inside zip files are placed in a folder with a name <basename>-<version>, for example. installer-0.2.1-SNAPSHOTI want them to be placed right on the zip root, is this possible?
source
share