Skip to content

Commit

Permalink
Merge pull request #148 from DataBiosphere/da_PF-2987_minor-patch-dep…
Browse files Browse the repository at this point in the history
…endencies

PF-2987: minor patch dependencies
  • Loading branch information
davidangb authored Jun 5, 2024
2 parents ed57e36 + 5d887be commit d046da8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions stairctl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ plugins {
id 'application'
id 'stairway.java-conventions'

id 'io.spring.dependency-management' version '1.1.4'
id 'io.spring.dependency-management' version '1.1.5'
// Spring Boot and Spring Shell versions should stay in sync
id 'org.springframework.boot' version '3.2.5'
}

Expand All @@ -19,5 +20,6 @@ dependencies {

// Spring
implementation group: 'org.springframework.boot', name: 'spring-boot-starter'
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.2.4'
// Spring Boot and Spring Shell versions should stay in sync
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.2.5'
}
8 changes: 4 additions & 4 deletions stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'

//Azure service bus dependencies
implementation 'com.azure:azure-messaging-servicebus:7.16.0'
implementation 'com.azure:azure-identity:1.12.0'
implementation 'com.azure:azure-messaging-servicebus:7.17.0'
implementation 'com.azure:azure-identity:1.12.1'
// Azure dependencies pull in out-of-date, vulnerable io.netty dependencies.
// If they update them in a future release, this may be removed:
implementation platform('io.netty:netty-bom:4.1.109.Final')
implementation platform('io.netty:netty-bom:4.1.110.Final')

testImplementation 'org.mockito:mockito-junit-jupiter:5.11.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.12.0'
}

apply from: "$rootDir/gradle/test.gradle"
2 changes: 1 addition & 1 deletion stairway-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'

// Google dependencies
implementation platform('com.google.cloud:libraries-bom:26.38.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.40.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'
}

Expand Down
8 changes: 4 additions & 4 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
implementation platform('com.fasterxml.jackson:jackson-bom:2.17.0')
implementation platform('com.fasterxml.jackson:jackson-bom:2.17.1')
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-guava'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8'
Expand All @@ -18,16 +18,16 @@ dependencies {
implementation group: 'org.openapitools', name: 'jackson-databind-nullable', version: '0.2.6'

// Spring
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.6'
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.8'

// Annotations
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '3.0.0'

// Database
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.27.0'
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.28.0'

// Google dependencies
implementation platform('com.google.cloud:libraries-bom:26.38.0') // use common bom
implementation platform('com.google.cloud:libraries-bom:26.40.0') // use common bom
implementation group: 'com.google.cloud', name: 'google-cloud-pubsub'

// File handling during testing
Expand Down

0 comments on commit d046da8

Please sign in to comment.