2017-03-28 04:05:55 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 16:50:23 -04:00
|
|
|
testCompile project(xpackModule('core'))
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackProject('transport-client').path, configuration: 'runtime')
|
2017-03-28 04:05:55 -04:00
|
|
|
}
|
|
|
|
|
2019-10-07 04:43:57 -04:00
|
|
|
testClusters.integTest {
|
2019-11-14 06:01:23 -05:00
|
|
|
testDistribution = "DEFAULT"
|
2017-03-28 04:05:55 -04:00
|
|
|
setting 'xpack.security.enabled', 'false'
|
2018-02-12 14:57:04 -05:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2017-03-28 04:05:55 -04:00
|
|
|
}
|
2019-01-08 06:39:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
testingConventions {
|
|
|
|
naming.clear()
|
|
|
|
naming {
|
|
|
|
IT {
|
2019-08-29 10:10:07 -04:00
|
|
|
baseClass 'org.elasticsearch.xpack.ESXPackSmokeClientTestCase'
|
2019-01-08 06:39:03 -05:00
|
|
|
}
|
|
|
|
}
|
2019-10-07 04:43:57 -04:00
|
|
|
}
|