Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datastax java-driver maven coordinates have changed #1467

Closed
tmoschou opened this issue Jan 11, 2024 · 1 comment
Closed

Datastax java-driver maven coordinates have changed #1467

tmoschou opened this issue Jan 11, 2024 · 1 comment
Labels
type: enhancement A general enhancement

Comments

@tmoschou
Copy link

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 user@cassandra.apache.org 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>
@mp911de
Copy link
Member

mp911de commented Jan 11, 2024

Thanks for reaching out. We will upgrade to the new coordinates with 4.3 M1.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

3 participants