summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/common/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/common/pom.xml')
-rw-r--r--sdnr/wt/common/pom.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/sdnr/wt/common/pom.xml b/sdnr/wt/common/pom.xml
index 2254b78f1..dfefe1834 100644
--- a/sdnr/wt/common/pom.xml
+++ b/sdnr/wt/common/pom.xml
@@ -107,8 +107,9 @@
<goal>exec</goal>
</goals>
<configuration>
- <executable>${basedir}/../data-provider/database/src/main/resources/es-init.sh</executable>
+ <executable>bash</executable>
<arguments>
+ <argument>${basedir}/../data-provider/database/src/main/resources/es-init.sh</argument>
<argument>initfile</argument>
<argument>-f</argument>
<argument>${project.build.directory}/EsInit.script</argument>
@@ -122,11 +123,12 @@
<artifactId>elasticsearch-maven-plugin</artifactId>
<version>6.16</version>
<configuration>
- <skip>true</skip>
+ <skip>${skipTests}</skip>
<clusterName>testCluster</clusterName>
<transportPort>9500</transportPort>
<httpPort>${databaseport}</httpPort>
- <version>6.4.3</version>
+ <version>6.5.0</version>
+ <timeout>120</timeout>
<pathInitScript>${project.build.directory}/EsInit.script</pathInitScript>
</configuration>
<executions>