-
Notifications
You must be signed in to change notification settings - Fork 46
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
Move from [deprecated] mongo-java-driver #80
Comments
Hi @elgleidson, It looks like you have two versions of the driver on your classpath:
You can prevent the version coming through from liquibase by adding exclusions to your
That should fix the specific error you are seeing. However liquibase still won't work and you are likely to get an error such as:
This is caused by the signature of Thus liquibase needs to be recompiled against a newer driver version such as I noticed that there is another issue already open directly asking about support for the newer Can I suggest closing this issue and add a comment to #71 so that you are notified of updates? Jason |
Hi @elgleidson changed the driver to 4x , additionally made compatible with 3x by @jsonking suggestion. See associated PR. Change will be part of 4.3.1 and upper |
I was trying to run liquibase extension for mongodb in my project but it doesn't work due to use of [deprecated]
mongo-java-driver
, which is not being published anymore - https://mongodb.github.io/mongo-java-driver/4.0/upgrading/#upgrading-from-the-3-12-java-driverSince I'm using Spring Data MongoDB (
spring-boot-starter-data-mongodb-reactive
which in turn bringsmongodb-driver-reactivestreams
orspring-boot-starter-data-mongodb
which in turn bringsmongodb-driver-sync
and both bringmongodb-driver-core
), this causes the following error:┆Issue is synchronized with this Jira Bug by Unito
The text was updated successfully, but these errors were encountered: