2017-03-28 04:05:55 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(xpackModule('core'))
|
2020-06-30 09:57:41 -04:00
|
|
|
testImplementation project(path: xpackProject('transport-client').path)
|
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
|
|
|
}
|