Add back lost tests.timewarp settings

This setting was lost during the upgrade to Elasticsearch 2.0

Original commit: elastic/x-pack-elasticsearch@d0e3b0e080
This commit is contained in:
Simon Willnauer 2015-06-18 10:24:18 +02:00
parent 64fce2b360
commit 4c6d709bca
1 changed files with 10 additions and 0 deletions

10
pom.xml
View File

@ -27,6 +27,7 @@
<shield.plugin.version>2.0.0-SNAPSHOT</shield.plugin.version>
<tests.security.manager>false</tests.security.manager> <!-- some tests fail since they need setFactory permission -->
<tests.rest.load_packaged>false</tests.rest.load_packaged>
<tests.timewarp>true</tests.timewarp>
</properties>
<dependencies>
@ -251,6 +252,15 @@
<attach>false</attach>
</configuration>
</plugin>
<plugin>
<groupId>com.carrotsearch.randomizedtesting</groupId>
<artifactId>junit4-maven-plugin</artifactId>
<configuration>
<systemProperties>
<tests.timewarp>${tests.timewarp}</tests.timewarp>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
<profiles>