Skip to content

2.0.0.M1

Pre-release
Pre-release
Compare
Choose a tag to compare
@puneetbehl puneetbehl released this 22 Sep 20:23
· 2 commits to master since this release

Release Information

Please note that in order to use this release you need to explicitly force the Flapdoodle Embedded MongoDB version in your application by specifying the following property in gradle.properties

embedded-mongo.version=2.2.0

Also make sure that you are using the correct version of MongoDB Java Driver (i.e. 4.0.3) otherwise add the following in the build.gradle:

configurations.all {
    resolutionStrategy.eachDependency  { DependencyResolveDetails details ->
        if (details.requested.group == 'org.mongodb' ) {
            details.useVersion('4.0.3')
        }
    }
}