Liquibase-mongodb NoClassDefFoundError AutoloadedConfigurations

I am trying to add liquibase-mongodb and am running into a bit of an issue. Liquibase will connect to Mongo and create the DATABASECHANGELOGLOCK collection then error out with the following message:

java.lang.NoClassDefFoundError: liquibase/configuration/AutoloadedConfigurations

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'foo' defined in com.liqui.base.liquidemo.LiquidemoApplication: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [void]: Factory method 'foo' threw exception; nested exception is java.lang.NoClassDefFoundError: liquibase/configuration/AutoloadedConfigurations

I have been following the instructions on github here. My github project can be found here.

Thank you!

Hello, @danielkJackson95 - welcome to the Liquibase Community!

This error could mean that the java-driver is missing from your classpath.
Please See perquisites section

If you intend to run Liquibase on any other database besides MongoDB, you’ll need to remove the liquibase-mongodb.jar from your classpath as it isn’t compatible with other databases.