Skip to content

Commit d0cfcac

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 f7edf29 commit d0cfcac

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
@@ -137,6 +137,23 @@
137137
</exclusions>
138138
</dependency>
139139

140+
<dependency>
141+
<groupId>org.apache.cassandra</groupId>
142+
<artifactId>cassandra-thrift</artifactId>
143+
<version>${cassandra.version}</version>
144+
<scope>test</scope>
145+
<exclusions>
146+
<exclusion>
147+
<groupId>ch.qos.logback</groupId>
148+
<artifactId>logback-core</artifactId>
149+
</exclusion>
150+
<exclusion>
151+
<groupId>io.netty</groupId>
152+
<artifactId>netty-all</artifactId>
153+
</exclusion>
154+
</exclusions>
155+
</dependency>
156+
140157
<dependency>
141158
<groupId>org.assertj</groupId>
142159
<artifactId>assertj-core</artifactId>

spring-data-cassandra/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@
136136
</exclusions>
137137
</dependency>
138138

139+
<dependency>
140+
<groupId>org.apache.cassandra</groupId>
141+
<artifactId>cassandra-thrift</artifactId>
142+
</dependency>
143+
139144
<dependency>
140145
<groupId>org.testcontainers</groupId>
141146
<artifactId>cassandra</artifactId>

0 commit comments

Comments
 (0)