Replace Embedded Mongo with Testcontainers' MongoDB support

Closes gh-23090
This commit is contained in:
Andy Wilkinson
2020-08-28 11:13:29 +01:00
parent 84a12c8436
commit 5cd910c7ce
4 changed files with 81 additions and 8 deletions

View File

@@ -249,11 +249,6 @@
<artifactId>unboundid-ldapsdk</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
@@ -356,6 +351,11 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mongodb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>neo4j</artifactId>