import org.xapek.yvesf.gradle.DownloadTask subprojects { task download(type: DownloadTask) {} task unzip(type: Copy) { into file("${buildDir}/unpacked/dist") eachFile { FileCopyDetails fcd -> fcd.path = fcd.path.substring(path.indexOf('/')+1) } } unzip.dependsOn(download) ospackage { into "/opt/${project.name}" from unzip.outputs.files } project.afterEvaluate { download.source "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${project.version}.zip" unzip.from zipTree(download.destFile) } }