mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
This contains the Painless-based DomainSplit function, generated static maps and basic tests. Due to cross-module complications, the tests are run by executing searches with script_fields and checking the response Original commit: elastic/x-pack-elasticsearch@c6c2942e01
16 lines
425 B
Groovy
16 lines
425 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
|
|
testCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.6'
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
setting 'script.inline', 'true'
|
|
distribution = 'zip'
|
|
plugin ':prelert-legacy:elasticsearch'
|
|
}
|
|
}
|