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