mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 06:55:32 +00:00
- Create a separate unitTest task instead of Gradle's built in - convert all configuration to use the new task - the built in task is now disabled
12 lines
331 B
Groovy
12 lines
331 B
Groovy
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
unitTest {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
include '**/*Tests.class'
|
|
}
|