What is the package in Flink-Cassandra-connector, includes Cassandra datastax core
Posted by
Soheil Pourbafrani on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/What-is-the-package-in-Flink-Cassandra-connector-includes-Cassandra-datastax-core-tp20386.html
Hi, I use Flink Cassandra Connector dependency in my maven project. Other components have conflict with the cassandra-driver-core that is embedded in flink-cassandra-connector. I tried to exclude that in pom.xml file like this:
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-cassandra_2.11</artifactId>
<version>1.4.2</version>
<exclusions>
<exclusion>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
</exclusion>
</exclusions>
</dependency>
but it didn't exclude cassandra-driver-core from my project, so I guess it is embedded under another name. Can anybody tell me what is the name of the artifact that includes classÂ
cassandra-driver-core in flink-cassandra-connector dependency?