BAEL-5358 - Case Insensitive Sorting in MongoDB (#11815)

* [BAEL-5358] - MongoDB Case Insensitive Ordering.

* [BAEL-5358] - removed comment, indent

* [BAEL-5358] - using junit5 and testcontainers

* [BAEL-5358] - fixed issues for PR

* [BAEL-5358] - removed method-> inline
This commit is contained in:
Gaetano Piazzolla
2022-03-12 19:21:34 +01:00
committed by GitHub
parent 538c845739
commit 612dc0be7c
2 changed files with 120 additions and 0 deletions
+12
View File
@@ -30,6 +30,18 @@
<artifactId>core</artifactId>
<version>${morphia.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mongodb</artifactId>
<version>1.16.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.16.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>