mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 08:29:09 +00:00
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
|
|
}
|
|
|