We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2473f commit 2d184e3Copy full SHA for 2d184e3
plugins/examples/rest-handler/build.gradle
@@ -30,10 +30,9 @@ test.enabled = false
30
31
task exampleFixture(type: org.elasticsearch.gradle.test.AntFixture) {
32
dependsOn testClasses
33
+ env 'CLASSPATH', "${ -> project.sourceSets.test.runtimeClasspath.asPath }"
34
executable = new File(project.runtimeJavaHome, 'bin/java')
- args '-cp', "${ -> project.sourceSets.test.runtimeClasspath.asPath }",
35
- 'org.elasticsearch.example.resthandler.ExampleFixture',
36
- baseDir, 'TEST'
+ args 'org.elasticsearch.example.resthandler.ExampleFixture', baseDir, 'TEST'
37
}
38
39
integTestCluster {
0 commit comments