Skip to content

Create a zip file with files from setupBuilder

Volker Berlin edited this page Jan 29, 2016 · 1 revision

If you want create also a zip file with the setings of SetupBuilder additional to the platform installer then you can do this with:

task zip( type: Zip ) {
    with setupBuilder
    doFirst {
        artifacts {
            archives zip
        }
    }
}

You can run this then with: gradle zip uploadArchives