mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 06:55:32 +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
11 lines
245 B
Groovy
11 lines
245 B
Groovy
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testImplementation project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
test {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
include '**/*Tests.class'
|
|
}
|