Skip to content

Commit a388b76

Browse files
authored
Release 3.1.0.0 (#26)
* Changed to use the datastax java driver version 3.1.0 and related must fixes to get tests to run, bumped the version to match datastax driver as stated in the readme documentation. * Change Guava, Sigar and Mockito scope to 'test' (#25) @mijicd release next version * Release 3.1.0.0 version
1 parent 6b076a9 commit a388b76

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

pom.xml

+17-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.smartcat</groupId>
66
<artifactId>cassandra-migration-tool</artifactId>
7-
<version>2.1.9.1</version>
7+
<version>3.1.0.0</version>
88
<packaging>jar</packaging>
99

1010
<name>cassandra-migration-tool</name>
@@ -45,7 +45,7 @@
4545
<organizationUrl>http://www.smartcat.io</organizationUrl>
4646
</developer>
4747
<developer>
48-
<name>Nikola Invancevic</name>
48+
<name>Nikola Ivancevic</name>
4949
<email>[email protected]</email>
5050
<organization>SmartCat</organization>
5151
<organizationUrl>http://www.smartcat.io</organizationUrl>
@@ -54,13 +54,13 @@
5454

5555
<properties>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57-
<source.level>1.7</source.level>
58-
<code.level>1.7</code.level>
59-
<version.cassandra-driver>2.1.9</version.cassandra-driver>
60-
<version.cassandra-unit>2.1.9.2</version.cassandra-unit>
61-
<version.guava>16.0.1</version.guava>
57+
<source.level>1.8</source.level>
58+
<code.level>1.8</code.level>
59+
<version.cassandra-driver>3.1.0</version.cassandra-driver>
60+
<version.cassandra-unit>3.0.0.1</version.cassandra-unit>
61+
<version.guava>18.0</version.guava>
6262
<version.slf4j>1.7.7</version.slf4j>
63-
<version.junit>4.9</version.junit>
63+
<version.junit>4.12</version.junit>
6464
<version.mockito>1.10.19</version.mockito>
6565
<version.plugin.jar>2.6</version.plugin.jar>
6666
<version.plugin.resources>2.7</version.plugin.resources>
@@ -85,12 +85,13 @@
8585
<artifactId>slf4j-api</artifactId>
8686
<version>${version.slf4j}</version>
8787
</dependency>
88+
8889
<dependency>
8990
<groupId>com.google.guava</groupId>
9091
<artifactId>guava</artifactId>
9192
<version>${version.guava}</version>
93+
<scope>test</scope>
9294
</dependency>
93-
9495
<dependency>
9596
<groupId>junit</groupId>
9697
<artifactId>junit</artifactId>
@@ -101,6 +102,7 @@
101102
<groupId>org.mockito</groupId>
102103
<artifactId>mockito-all</artifactId>
103104
<version>${version.mockito}</version>
105+
<scope>test</scope>
104106
</dependency>
105107
<dependency>
106108
<groupId>org.cassandraunit</groupId>
@@ -114,6 +116,12 @@
114116
</exclusion>
115117
</exclusions>
116118
</dependency>
119+
<dependency>
120+
<groupId>org.fusesource</groupId>
121+
<artifactId>sigar</artifactId>
122+
<version>1.6.4</version>
123+
<scope>test</scope>
124+
</dependency>
117125
</dependencies>
118126

119127
<build>

src/test/resources/another-cassandra.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ hinted_handoff_enabled: true
2727
# generated. After it has been dead this long, hints will be dropped.
2828
max_hint_window_in_ms: 3600000 # one hour
2929

30+
hints_directory: target/embeddedCassandra/hints
3031
# DEPRECATED : Sleep this long after delivering each hint
3132
#hinted_handoff_throttle_delay_in_ms: 1
3233

0 commit comments

Comments
 (0)