mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-18 19:05:06 +00:00
Backport of #48849. Update `.editorconfig` to make the Java settings the default for all files, and then apply a 2-space indent to all `*.gradle` files. Then reformat all the files.
12 lines
303 B
Groovy
12 lines
303 B
Groovy
apply plugin: 'base'
|
|
|
|
task buildOssDockerBuildContext(type: Tar) {
|
|
extension = 'tar.gz'
|
|
compression = Compression.GZIP
|
|
archiveClassifier = "docker-build-context"
|
|
archiveBaseName = "elasticsearch-oss"
|
|
with dockerBuildContext(true, false, false)
|
|
}
|
|
|
|
assemble.dependsOn buildOssDockerBuildContext
|