Skip to content

Commit b36d55f

Browse files
authored
Merge pull request #782 from marklogic/feature/spring-bump
MLE-22594 Bumping Spring to 6.2.10
2 parents 19e92f0 + cac5984 commit b36d55f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/jdbc-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88
}
99

1010
dependencies {
11-
implementation "org.springframework:spring-jdbc:6.2.9"
11+
implementation "org.springframework:spring-jdbc:6.2.10"
1212
implementation "org.postgresql:postgresql:42.7.7"
1313
}
1414

examples/sample-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ configurations {
4747
configurations.all {
4848
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
4949
if (details.requested.group.startsWith('org.springframework')) {
50-
details.useVersion '6.2.9'
50+
details.useVersion '6.2.10'
5151
details.because 'Forcing marklogic-junit5 to use the latest version of Spring to minimize security vulnerabilities.'
5252
}
5353
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version=6.1-SNAPSHOT
44
# This should match the version used by the MarkLogic Java Client.
55
jacksonVersion=2.19.0
66

7-
springVersion=6.2.9
7+
springVersion=6.2.10
88

99
# Define these on the command line to publish to OSSRH
1010
# See https://central.sonatype.org/publish/publish-gradle/#credentials for more information

0 commit comments

Comments
 (0)