Skip to content

Releases: grails/grails-embedded-mongodb

2.0.1

17 Oct 08:52
Compare
Choose a tag to compare

What's Changed

Contributors

@puneetbehl, @renovate and @renovate[bot]

2.0.0

15 Jun 07:37
Compare
Choose a tag to compare

What's Changed

Contributors

@puneetbehl, @renovate and @renovate[bot]

2.0.0-M2

14 Jun 15:28
Compare
Choose a tag to compare
2.0.0-M2 Pre-release
Pre-release

What's Changed

Contributors

@graemerocher, @jameskleeh, @puneetbehl, @renovate and @renovate[bot]

2.0.0.M1

22 Sep 20:23
Compare
Choose a tag to compare
2.0.0.M1 Pre-release
Pre-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')
        }
    }
}