Skip to content

Commit

Permalink
Update to spring-boot 3.3.7 (#1728)
Browse files Browse the repository at this point in the history
* Update to spring-boot 3.3.7

* Removed obsolete resolution strategy
  • Loading branch information
lukasz-wolski authored Jan 13, 2025
1 parent e9fb601 commit 7dd8af0
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
id "info.solidsoft.pitest" version '1.15.0'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.sonarqube' version '5.0.0.4638'
id 'org.springframework.boot' version '3.3.4'
id 'org.springframework.boot' version '3.3.7'
id "org.flywaydb.flyway" version '9.22.3'
id 'au.com.dius.pact' version '4.1.7'// do not change, otherwise serenity report fails
id 'org.owasp.dependencycheck' version '10.0.3'
Expand Down Expand Up @@ -623,14 +623,6 @@ configurations.all {
details.useVersion "32.1.1-jre"
}
}

resolutionStrategy.eachDependency { details ->
// Remedy for CVE-2024-22233 - remove once spring-boot transitively uses version >= 6.1.14
if (details.requested.group == 'org.springframework'
&& (details.requested.version == '6.1.12' || details.requested.version == '6.1.13')) {
details.useVersion "6.1.14"
}
}
}

// this is required to force Java running on the Azure Windows Server OS into using
Expand Down

0 comments on commit 7dd8af0

Please sign in to comment.