blob: e2e8c90922643070daa959f137cfe866b334ba49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import org.xapek.yvesf.gradle.DownloadTask
subprojects {
task download(type: DownloadTask) {}
task untar(type: Copy) {
into file("${buildDir}/unpacked/dist")
eachFile { FileCopyDetails fcd ->
fcd.path = fcd.path.substring(path.indexOf('/') + 1)
}
}
untar.dependsOn(download)
ospackage {
from untar.outputs.files
}
project.afterEvaluate {
untar.from tarTree(download.destFile)
}
tasks.getByName('createActivator').dependsOn('untar')
tasks.getByName('createActivator').doFirst {
file("${buildDir}/unpacked/dist/bin").list().each {
activator.bin[it] = "/opt/${project.name}/bin/${it}"
}
}
}
|