I want to use Embedded MongoDB with Spring Boot for testing.
Here's the dependency I'm importing:
testCompile('de.flapdoodle.embed:de.flapdoodle.embed.mongo')
Whenever I start the SpringBootTest
the EmbeddedMongoAutoConfiguration
initializes the MongodExecutable
bean and that bean starts to download a zip file (version 3.2.2) from a url. How do I configure it so that it will use the zip file located within my src/test/resources
directory?