DATACASS-136 - CLOSED - Updated dependencies.
Moved cassandra-all to scope test (left over from DSJD 1.X days) Newest DSJD Newest C* 2.0.X
This commit is contained in:
5
pom.xml
5
pom.xml
@@ -30,10 +30,11 @@
|
||||
<dist.id>spring-data-cassandra</dist.id>
|
||||
<springdata.commons>1.9.0.BUILD-SNAPSHOT</springdata.commons>
|
||||
<cassandra-unit.version>2.0.2.1</cassandra-unit.version>
|
||||
<cassandra-driver-dse.version>2.0.2</cassandra-driver-dse.version>
|
||||
<cassandra-driver-dse>2.0.4</cassandra-driver-dse>
|
||||
<el.version>1.0</el.version>
|
||||
<failsafe.version>2.16</failsafe.version>
|
||||
<jamm.version>0.2.5</jamm.version>
|
||||
<cassandra>2.0.9</cassandra>
|
||||
</properties>
|
||||
|
||||
<developers>
|
||||
@@ -78,7 +79,7 @@
|
||||
<dependency>
|
||||
<groupId>com.datastax.cassandra</groupId>
|
||||
<artifactId>cassandra-driver-dse</artifactId>
|
||||
<version>${cassandra-driver-dse.version}</version>
|
||||
<version>${cassandra-driver-dse}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
|
||||
@@ -87,7 +87,8 @@
|
||||
<dependency>
|
||||
<groupId>org.apache.cassandra</groupId>
|
||||
<artifactId>cassandra-all</artifactId>
|
||||
<version>2.0.6</version>
|
||||
<version>${cassandra}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
|
||||
@@ -49,4 +49,9 @@ public class TestHostStateListener implements StateListener {
|
||||
log.info("Host Removed: " + host.getAddress());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSuspected(Host host) {
|
||||
log.info("Host Suspected: " + host.getAddress());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -25,9 +25,9 @@ socket.soLinger=5
|
||||
socket.tcpNoDelay=false
|
||||
local.min.requests=10
|
||||
local.max.requests=20
|
||||
local.core.connections=30
|
||||
local.max.connections=40
|
||||
local.core.connections=4
|
||||
local.max.connections=8
|
||||
remote.min.requests=5
|
||||
remote.max.requests=10
|
||||
remote.core.connections=15
|
||||
remote.max.connections=20
|
||||
remote.core.connections=2
|
||||
remote.max.connections=4
|
||||
|
||||
@@ -81,6 +81,23 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.cassandra</groupId>
|
||||
<artifactId>cassandra-all</artifactId>
|
||||
<version>${cassandra}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
<groupId>org.slf4j</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>guava</artifactId>
|
||||
<groupId>com.google.guava</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.codehaus.jackson</groupId>
|
||||
|
||||
Reference in New Issue
Block a user