mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-13 16:35:45 +00:00
11 lines
165 B
Groovy
11 lines
165 B
Groovy
|
|
||
|
task buildTar(type: Tar, dependsOn: deps) {
|
||
|
baseName = 'elasticsearch'
|
||
|
with archivesFiles
|
||
|
compression = Compression.GZIP
|
||
|
}
|
||
|
|
||
|
artifacts {
|
||
|
archives buildTar
|
||
|
}
|