Upgrade to MongoDB driver 5.0.

Closes: #4663
This commit is contained in:
Christoph Strobl
2024-03-18 11:50:48 +01:00
parent 3747b3ed44
commit af6da0f67d
2 changed files with 5 additions and 5 deletions

4
Jenkinsfile vendored
View File

@@ -265,7 +265,7 @@ pipeline {
}
}
stage("test: MongoDB 7.0 (driver-next)") {
stage("test: MongoDB 7.0 (driver-previous)") {
agent {
label 'data'
}
@@ -287,7 +287,7 @@ pipeline {
"DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR} " +
"DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW} " +
"GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY} " +
"./mvnw -s settings.xml -Pmongo-5.0 clean dependency:list test -Dsort -U -B -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false"
"./mvnw -s settings.xml -Pmongo-4.x clean dependency:list test -Dsort -U -B -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false"
}
}
}

View File

@@ -27,7 +27,7 @@
<project.type>multi</project.type>
<dist.id>spring-data-mongodb</dist.id>
<springdata.commons>3.3.0-SNAPSHOT</springdata.commons>
<mongo>4.11.1</mongo>
<mongo>5.0.0</mongo>
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
<jmh.version>1.19</jmh.version>
</properties>
@@ -133,9 +133,9 @@
</modules>
</profile>
<profile>
<id>mongo-5.0</id>
<id>mongo-4.x</id>
<properties>
<mongo>5.0.0-beta0</mongo>
<mongo>4.11.1</mongo>
</properties>
</profile>