Skip to content

Commit

Permalink
Merge pull request #157 from DataBiosphere/dependabot/gradle/develop/…
Browse files Browse the repository at this point in the history
…minor-patch-dependencies-a105e876b0

[PF-2987]: Bump the minor-patch-dependencies group with 10 updates
  • Loading branch information
pshapiro4broad authored Sep 6, 2024
2 parents b7e6be8 + 8de0f0e commit 52177ed
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'idea'
id 'maven-publish'

id 'com.jfrog.artifactory' version '5.2.3'
id 'com.jfrog.artifactory' version '5.2.5'
id "org.sonarqube" version "5.1.0.4882"
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repositories {
dependencies {
implementation group: 'com.diffplug.spotless', name: 'spotless-plugin-gradle', version: '6.25.0'
implementation group: 'com.srcclr.gradle', name: 'com.srcclr.gradle.gradle.plugin', version: '3.1.12'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.26.2'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.27.1'
}
4 changes: 2 additions & 2 deletions stairctl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

id 'io.spring.dependency-management' version '1.1.6'
// Spring Boot and Spring Shell versions should stay in sync
id 'org.springframework.boot' version '3.3.2'
id 'org.springframework.boot' version '3.3.3'
}

version = gradle.version
Expand All @@ -21,5 +21,5 @@ dependencies {
// Spring
implementation group: 'org.springframework.boot', name: 'spring-boot'
// Spring Boot and Spring Shell versions should stay in sync
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.3.1'
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '3.3.2'
}
6 changes: 3 additions & 3 deletions stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ plugins {
dependencies {
api project(':stairway')

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.15.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'

//Azure service bus dependencies
implementation 'com.azure:azure-messaging-servicebus:7.17.2'
implementation 'com.azure:azure-messaging-servicebus:7.17.3'
implementation 'com.azure:azure-identity:1.13.2'
// 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.112.Final')

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

apply from: "$rootDir/gradle/test.gradle"
4 changes: 2 additions & 2 deletions stairway-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ plugins {
dependencies {
api project(':stairway')

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.15.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'

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

Expand Down
10 changes: 5 additions & 5 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.15.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.17.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
Expand All @@ -18,8 +18,8 @@ dependencies {
implementation group: 'org.openapitools', name: 'jackson-databind-nullable', version: '0.2.6'

// Spring
implementation group: 'org.springframework', name: 'spring-context', version: '6.1.11'
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.11'
implementation group: 'org.springframework', name: 'spring-context', version: '6.1.12'
implementation group: 'org.springframework', name: 'spring-web', version: '6.1.12'

// Annotations
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '3.0.0'
Expand All @@ -28,14 +28,14 @@ dependencies {
implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.29.1'

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

// File handling during testing
testImplementation group: 'commons-io', name: 'commons-io', version: '2.16.1'

// Mocks during testing
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.12.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.13.0'
}

apply from: "$rootDir/gradle/test.gradle"

0 comments on commit 52177ed

Please sign in to comment.