Rene Groeschke 01e9126588
Remove deprecated usage of testCompile configuration (#57921) (#58083)
* Remove usage of deprecated testCompile configuration
* Replace testCompile usage by testImplementation
* Make testImplementation non transitive by default (as we did for testCompile)
* Update CONTRIBUTING about using testImplementation for test dependencies
* Fail on testCompile configuration usage
2020-06-14 22:30:44 +02:00

24 lines
558 B
Groovy

apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testImplementation project(xpackModule('core'))
testImplementation 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'
}
}
}