2017-03-28 09:05:55 +01:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 13:50:23 -07:00
|
|
|
testCompile project(xpackModule('core'))
|
2018-01-26 21:48:30 -08:00
|
|
|
testCompile project(path: xpackProject('transport-client').path, configuration: 'runtime')
|
2017-03-28 09:05:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
integTestCluster {
|
|
|
|
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 {
|
|
|
|
baseClass 'org.elasticsearch.xpack.ml.client.ESXPackSmokeClientTestCase'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|