12 lines
154 B
Groovy
12 lines
154 B
Groovy
|
|
||
|
task buildZip(type: Zip, dependsOn: deps) {
|
||
|
baseName = 'elasticsearch'
|
||
|
with archivesFiles
|
||
|
}
|
||
|
|
||
|
artifacts {
|
||
|
'default' buildZip
|
||
|
archives buildZip
|
||
|
}
|
||
|
|