24 lines
544 B
Groovy
24 lines
544 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(xpackModule('core'))
|
|
testCompile project(path: xpackProject('transport-client').path, configuration: 'runtime')
|
|
}
|
|
|
|
testClusters.integTest {
|
|
testDistribution = "DEFAULT"
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
}
|
|
|
|
|
|
testingConventions {
|
|
naming.clear()
|
|
naming {
|
|
IT {
|
|
baseClass 'org.elasticsearch.xpack.ESXPackSmokeClientTestCase'
|
|
}
|
|
}
|
|
}
|