mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 16:39:11 +00:00
* 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
24 lines
558 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|