final download = makeDownloadTask( url: "http://dl.bintray.com/groovy/maven/apache-groovy-binary-${project.version}.zip", sha256: sha256sum) task unzip(type: Copy) { from zipTree(download.dest) 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 } activator.bin['groovysh'] = "/opt/${project.name}/bin/groovysh" activator.bin['groovy'] = "/opt/${project.name}/bin/groovy" activator.bin['groovyConsole'] = "/opt/${project.name}/bin/groovyConsole" activator.env['GROOVY_HOME'] = "/opt/${project.name}"