Polishing.

Add cassandra-thrift as test dependency since it was removed with the Cassandra 3.11.11 upgrade.

See #1234
This commit is contained in:
Mark Paluch
2022-03-04 14:58:38 +01:00
parent f7edf29d19
commit d0cfcac4a7
2 changed files with 22 additions and 0 deletions

17
pom.xml
View File

@@ -137,6 +137,23 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-thrift</artifactId>
<version>${cassandra.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>

View File

@@ -136,6 +136,11 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-thrift</artifactId>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>cassandra</artifactId>