Browse Source

Fix MongoCrypt dependency setup when testing with Driver 4.x.

See #4817
pull/4840/head
Mark Paluch 1 year ago
parent
commit
eeab99266f
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 2
      pom.xml
  2. 2
      spring-data-mongodb/pom.xml

2
pom.xml

@ -28,6 +28,7 @@ @@ -28,6 +28,7 @@
<dist.id>spring-data-mongodb</dist.id>
<springdata.commons>3.4.0-SNAPSHOT</springdata.commons>
<mongo>5.2.1</mongo>
<mongodb-crypt>${mongo}</mongodb-crypt>
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
<jmh.version>1.19</jmh.version>
</properties>
@ -137,6 +138,7 @@ @@ -137,6 +138,7 @@
<id>mongo-4.x</id>
<properties>
<mongo>4.11.1</mongo>
<mongodb-crypt>1.8.0</mongodb-crypt>
</properties>
</profile>

2
spring-data-mongodb/pom.xml

@ -115,7 +115,7 @@ @@ -115,7 +115,7 @@
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-crypt</artifactId>
<version>${mongo}</version>
<version>${mongodb-crypt}</version>
<optional>true</optional>
</dependency>

Loading…
Cancel
Save