|
@@ -84,7 +84,7 @@ task deploy(type: Copy) {
|
|
|
}
|
|
|
|
|
|
task writeElasticsearchProperties {
|
|
|
- onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) && project.rootProject.ext.javaVersion == JavaVersion.VERSION_1_8 }
|
|
|
+ onlyIf { !Os.isFamily(Os.FAMILY_WINDOWS) }
|
|
|
dependsOn 'integTestCluster#wait', deploy
|
|
|
doLast {
|
|
|
final File elasticsearchProperties = file("${wildflyInstall}/standalone/configuration/elasticsearch.properties")
|
|
@@ -177,7 +177,7 @@ task stopWildfly(type: LoggedExec) {
|
|
|
commandLine "${wildflyInstall}/bin/jboss-cli.sh", "--controller=localhost:${-> managementPort}", "--connect", "command=shutdown"
|
|
|
}
|
|
|
|
|
|
-if (!Os.isFamily(Os.FAMILY_WINDOWS) && project.rootProject.ext.javaVersion == JavaVersion.VERSION_1_8) {
|
|
|
+if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
|
integTestRunner.dependsOn(configureTransportClient)
|
|
|
final TaskExecutionAdapter logDumpListener = new TaskExecutionAdapter() {
|
|
|
@Override
|