mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-12 07:55:24 +00:00
99cff6f3b9
Also changed some documentation to use painless instead of groovy to get people used to it. Original commit: elastic/x-pack-elasticsearch@92a007cc0d
16 lines
452 B
Groovy
16 lines
452 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-painless', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
setting 'script.inline', 'true'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
}
|
|
}
|