-
Notifications
You must be signed in to change notification settings - Fork 312
Closed
Labels
type: enhancementA general enhancementA general enhancement
Milestone
Description
The java-driver has recently been donated by Datastax to The Apache Software Foundation and the Apache Cassandra project.
Apache Cassandra Java Driver 4.18.0 is the first release post-donation of the Java Driver. The maven coordinates have changed from com.datastax.oss
to org.apache.cassandra
, while all package names remain the same. Migration of docs and download links on the website are still in progress.
See the announcement to the [email protected] mailing list.
Presumably, as the packages names are the same, users can make use of new artifacts by excluding the transitive dependency on com.datastax.oss
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>java-driver-core</artifactId>
<version>4.18.0</version>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>java-driver-query-builder</artifactId>
<version>4.18.0</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-cassandra</artifactId>
<exclusions>
<exclusion>
<groupId>com.datastax.oss</groupId>
<artifactId>java-driver-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.datastax.oss</groupId>
<artifactId>java-driver-query-builder</artifactId>
</exclusion>
</exclusions>
</dependency>
Metadata
Metadata
Assignees
Labels
type: enhancementA general enhancementA general enhancement