2017-01-09 04:41:48 -05: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 10:08:13 -04: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 07:31:28 -05:00
|
|
|
testCompile project(path: xpackModule('watcher'), configuration: 'runtime')
|
2018-04-26 03:23:54 -04:00
|
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
|
|
testCompile project(path: ':modules:lang-painless', configuration: 'runtime')
|
2017-01-09 04:41:48 -05:00
|
|
|
}
|
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster {
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
2017-03-02 12:01:05 -05:00
|
|
|
setting 'xpack.ml.enabled', 'false'
|
2018-02-12 14:57:04 -05:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2018-02-12 10:03:02 -05:00
|
|
|
setting 'logger.org.elasticsearch.xpack.watcher', 'DEBUG'
|
2017-01-09 04:41:48 -05:00
|
|
|
}
|