12 lines
327 B
Groovy
12 lines
327 B
Groovy
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
test {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
include '**/*Tests.class'
|
|
}
|