Update the way the Redis host(s) can be configured for the tests.

There is now a single property : redis-hosts.
This property must contain at least 2 host definitions of the form "host:port" (comma separated).
Sharding tests need 2 hosts ...

If this is not the case, the default value used is "localhost:6379,localhost:6380".
Tests that required one host are using the first definition.
This commit is contained in:
Yaourt
2010-09-15 10:49:36 +02:00
27 changed files with 2051 additions and 420 deletions

View File

@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>1.0.0-RC5</version>
<version>1.0.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -14,8 +14,7 @@
</dependencies>
<properties>
<redis-host>localhost</redis-host>
<redis-port>6379</redis-port>
<redis-hosts>localhost:6379,localhost:6380</redis-hosts>
</properties>
<build>
@@ -35,8 +34,7 @@
<version>2.6</version>
<configuration>
<systemPropertyVariables>
<redis-host>${redis-host}</redis-host>
<redis-port>${redis-port}</redis-port>
<redis-hosts>${redis-hosts}</redis-hosts>
</systemPropertyVariables>
</configuration>
</plugin>