Skip to content

Commit

Permalink
Upgrading dependencies (#646)
Browse files Browse the repository at this point in the history
* Upgrading dependencies
* Updating spring boot version in the examples
* Upgrading latest jackson-bom
  • Loading branch information
symphony-mariacristina authored Mar 30, 2022
1 parent 37c3e14 commit 3c659e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions symphony-bdk-bom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ repositories {

dependencies {
// import Spring Boot's BOM
api platform('org.springframework.boot:spring-boot-dependencies:2.6.4')
api platform('org.springframework.boot:spring-boot-dependencies:2.6.5')
// import Jackson's BOM
api platform('com.fasterxml.jackson:jackson-bom:2.13.2')
api platform('com.fasterxml.jackson:jackson-bom:2.13.2.20220328')
// define all our dependencies versions
constraints {
// Internal modules dependencies (Keep them first)
Expand Down Expand Up @@ -49,10 +49,10 @@ dependencies {
api 'ch.qos.logback:logback-core:1.2.8'

// Just in case users are using log4j instead of logback (default), for CVE-2021-44228
api 'org.apache.logging.log4j:log4j-api:2.17.0'
api 'org.apache.logging.log4j:log4j-core:2.17.0'
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0'
api 'org.apache.logging.log4j:log4j-jul:2.17.0'
api 'org.apache.logging.log4j:log4j-api:2.17.2'
api 'org.apache.logging.log4j:log4j-core:2.17.2'
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.2'
api 'org.apache.logging.log4j:log4j-jul:2.17.2'

api 'commons-io:commons-io:2.11.0'
api 'commons-codec:commons-codec:1.15'
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.6.4"
id 'org.springframework.boot' version "2.6.5"
}

description = 'Symphony Java BDK Examples for the SpringBoot integration'
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.6.4"
id 'org.springframework.boot' version "2.6.5"
}

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

0 comments on commit 3c659e3

Please sign in to comment.