Skip to content

Commit 243c4e5

Browse files
committed
Polishing.
Add cassandra-thrift as test dependency since it was removed with the Cassandra 3.11.11 upgrade. See #1234
1 parent 1cd392e commit 243c4e5

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

pom.xml

+17
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,23 @@
161161
</exclusions>
162162
</dependency>
163163

164+
<dependency>
165+
<groupId>org.apache.cassandra</groupId>
166+
<artifactId>cassandra-thrift</artifactId>
167+
<version>${cassandra.version}</version>
168+
<scope>test</scope>
169+
<exclusions>
170+
<exclusion>
171+
<groupId>ch.qos.logback</groupId>
172+
<artifactId>logback-core</artifactId>
173+
</exclusion>
174+
<exclusion>
175+
<groupId>io.netty</groupId>
176+
<artifactId>netty-all</artifactId>
177+
</exclusion>
178+
</exclusions>
179+
</dependency>
180+
164181
<dependency>
165182
<groupId>org.assertj</groupId>
166183
<artifactId>assertj-core</artifactId>

spring-data-cassandra/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@
161161
<artifactId>cassandra-all</artifactId>
162162
</dependency>
163163

164+
<dependency>
165+
<groupId>org.apache.cassandra</groupId>
166+
<artifactId>cassandra-thrift</artifactId>
167+
</dependency>
168+
164169
<dependency>
165170
<groupId>org.testcontainers</groupId>
166171
<artifactId>cassandra</artifactId>

0 commit comments

Comments
 (0)