mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +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.
19 lines
425 B
Groovy
19 lines
425 B
Groovy
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
apply plugin: 'elasticsearch.build'
|
|
test.enabled = false
|
|
|
|
dependencies {
|
|
compile project(':test:framework')
|
|
}
|
|
|
|
subprojects {
|
|
project.tasks.withType(RestIntegTestTask) {
|
|
final File xPackResources = new File(xpackProject('plugin').projectDir, 'src/test/resources')
|
|
project.copyRestSpec.from(xPackResources) {
|
|
include 'rest-api-spec/api/**'
|
|
}
|
|
}
|
|
|
|
}
|