29 lines
781 B
Groovy
29 lines
781 B
Groovy
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
apply plugin: 'elasticsearch.java-rest-test'
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
esplugin {
|
|
description 'Die with dignity plugin'
|
|
classname 'org.elasticsearch.DieWithDignityPlugin'
|
|
}
|
|
|
|
dependencies {
|
|
// let the javaRestTest see the classpath of main
|
|
javaRestTestImplementation project.sourceSets.main.runtimeClasspath
|
|
}
|
|
|
|
javaRestTest {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
systemProperty 'tests.system_call_filter', 'false'
|
|
nonInputProperties.systemProperty 'log', "${-> testClusters.javaRestTest.singleNode().getServerLog()}"
|
|
systemProperty 'runtime.java.home', BuildParams.runtimeJavaHome
|
|
}
|
|
|
|
testClusters.javaRestTest {
|
|
systemProperty "die.with.dignity.test", "whatever"
|
|
}
|
|
|
|
test.enabled = false
|
|
|