Some times ago there were shaded and unshaded jars, moving between repositories, etc. I'd like to use liquibase with cassandra, but I cannot get working set of cassandra driver jars.
I was able to track these down:
caffeine-3.2.0.jar
cassandra-jdbc-wrapper-4.14.0.jar
java-driver-core-4.19.0.jar
liquibase-cassandra-4.31.1.jar
but I'm still getting
Caused by: java.lang.ClassNotFoundException: com.datastax.oss.driver.shaded.guava.common.collect.ImmutableList
which is probably from java-driver-core-4.19.0.jar
, which IIUC is moved/renamed/updated shaded jar, but then it's even more suprising, that reference to copypasted guava stuff isn't found.
Can anyone suggest how to fix?
UPDATE: another approach: you can download currenct cassandra from Apache Download Mirrors and take driver from there, but neither of these jars will contain java.lang.ClassNotFoundException: com.datastax.oss.driver.api.core.config.DriverOption so you will not run liquibase using cassandra-jdbc-wrapper-4.14.0.jar with it.
I don't know. Maybe it's just not possible to connect to it from liquibase now?