Skip to content

Commit

Permalink
Update Spring Boot to 2.4.3 (finos#474)
Browse files Browse the repository at this point in the history
This fixes security vulnerabilities reported by Snyk.

Along the way we lost the javax.annotation.Generated classes, add it
explictely as a dependency.

(cherry picked from commit ba4ad60)
  • Loading branch information
symphony-youri committed Mar 17, 2021
1 parent c84e9ab commit e7deb03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion symphony-bdk-bom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {

dependencies {
// import Spring Boot's BOM
api platform('org.springframework.boot:spring-boot-dependencies:2.4.1')
api platform('org.springframework.boot:spring-boot-dependencies:2.4.3')

// define all our dependencies versions
constraints {
Expand Down
1 change: 1 addition & 0 deletions symphony-bdk-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ dependencies {
implementation 'io.github.resilience4j:resilience4j-retry'
implementation 'io.swagger:swagger-annotations'
implementation 'com.google.code.findbugs:jsr305'
implementation 'javax.annotation:jsr250-api:1.0'

testImplementation project(':symphony-bdk-http:symphony-bdk-http-jersey2')
testRuntimeOnly project(':symphony-bdk-template:symphony-bdk-template-freemarker')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'bdk.java-common-conventions'
id 'org.springframework.boot' version "2.4.1"
id 'org.springframework.boot' version "2.4.3"
}

description = 'Symphony Java BDK Examples for the SpringBoot integration'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'bdk.java-common-conventions'
id 'org.springframework.boot' version "2.4.1"
id 'org.springframework.boot' version "2.4.3"
}

description = 'How to run multiple bot instances in //'
Expand Down
2 changes: 1 addition & 1 deletion symphony-bdk-examples/bdk-spring-boot-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'bdk.java-common-conventions'
id 'org.springframework.boot' version "2.4.1"
id 'org.springframework.boot' version "2.4.3"
}

description = 'Symphony Java BDK Examples for the SpringBoot integration'
Expand Down

0 comments on commit e7deb03

Please sign in to comment.