2019-07-01 10:38:56 +03:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
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 {
|
2019-04-15 19:14:43 +02:00
|
|
|
testCompile project(':x-pack:qa')
|
2017-01-09 10:41:48 +01:00
|
|
|
}
|
|
|
|
|
2019-07-01 10:38:56 +03:00
|
|
|
testClusters.integTest {
|
2019-07-15 17:53:05 -07:00
|
|
|
testDistribution = 'DEFAULT'
|
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'
|
2019-01-08 13:39:03 +02:00
|
|
|
}
|