Skip to content

Commit

Permalink
Bump Spring framework's version (#753)
Browse files Browse the repository at this point in the history
* Bump Spring framework's version
  • Loading branch information
labkey-ians authored Mar 6, 2024
1 parent ab1b806 commit 40e582d
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions server/embedded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,48 @@ dependencies {
}
}

// TODO these shouldn't be merged forward, the Spring-Boot version currently used in develop doesn't require these
implementation('org.springframework:spring-web') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-core') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-jcl') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-context') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-aop') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-beans') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-expression') {
version {
strictly "${springVersion}"
}
}
implementation('org.springframework:spring-webmvc') {
version {
strictly "${springVersion}"
}
}

// This is a transitive dependency from spring-boot-starter that we're forcing to pick up CVE hotfixes. We're not
// vulnerable since we're not accepting untrusted Spring Boot config files, but this cleans up the reporting.
// At some point Spring Boot should update its preferred version and we can yank this
Expand Down

0 comments on commit 40e582d

Please sign in to comment.