2017-01-09 10:41:48 +01:00
|
|
|
import groovy.json.JsonSlurper
|
|
|
|
|
|
|
|
import javax.net.ssl.HttpsURLConnection
|
|
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
|
2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2016-07-13 16:08:13 +02:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
2018-02-23 13:31:28 +01:00
|
|
|
testCompile project(path: xpackModule('watcher'), configuration: 'runtime')
|
2018-04-26 09:23:54 +02:00
|
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
|
|
testCompile project(path: ':modules:lang-painless', configuration: 'runtime')
|
2017-01-09 10:41:48 +01:00
|
|
|
}
|
|
|
|
|
2017-02-22 00:56:52 -08:00
|
|
|
integTestCluster {
|
2018-08-02 13:05:11 -04:00
|
|
|
setting 'xpack.ilm.enabled', 'false'
|
2017-02-22 00:56:52 -08:00
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
2017-03-02 17:01:05 +00:00
|
|
|
setting 'xpack.ml.enabled', 'false'
|
2018-02-12 12:57:04 -07:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2018-02-12 16:03:02 +01:00
|
|
|
setting 'logger.org.elasticsearch.xpack.watcher', 'DEBUG'
|
2017-01-09 10:41:48 +01:00
|
|
|
}
|