mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 22:45:04 +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
|
|
}
|