Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Fix: dependency updates (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Dong authored Mar 26, 2021
1 parent ac9d88c commit f1f965f
Show file tree
Hide file tree
Showing 5 changed files with 227 additions and 309 deletions.
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@ buildscript {
lombok: '1.18.18',
resilience4j: '1.7.0',
awsSdkVersion: '1.11.948',
kork: '7.99.0',
kork: '7.107.0',
guava: '30.1-jre',
springBoot: '2.4.2',
springBoot: '2.4.4',
]
}
ext['groovy.version'] = '3.0.7'

repositories {
maven {
url "https://repo.maven.apache.org/maven2"
}
maven {
url "https://dl.bintray.com/spinnaker/gradle"
}
Expand Down Expand Up @@ -153,8 +156,9 @@ subprojects {
}
dependencies {
//upgrading tomcat manually until Spring-Boot 2.3.5 is released to resolve a security vulnerability
dependency 'org.apache.tomcat.embed:tomcat-embed-core:9.0.41'
dependency 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.41'
//keep tomcat on 9.x until Spring Boot implements javax->jakarta change
dependency 'org.apache.tomcat.embed:tomcat-embed-core:9.0.44'
dependency 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.44'
}
}

Expand Down
Loading

0 comments on commit f1f965f

Please sign in to comment.