Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PF-2987]: Bump the minor-patch-dependencies group across 1 directory with 14 updates #156

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ plugins {
id 'idea'
id 'maven-publish'

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

// task dependencies is NOT recursively executed on subprojects
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.0'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.26.2'
}
4 changes: 2 additions & 2 deletions stairctl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ plugins {
id 'application'
id 'stairway.java-conventions'

id 'io.spring.dependency-management' version '1.1.5'
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.1'
id 'org.springframework.boot' version '3.3.2'
}

version = gradle.version
Expand Down
8 changes: 4 additions & 4 deletions stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ plugins {
dependencies {
api project(':stairway')

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

//Azure service bus dependencies
implementation 'com.azure:azure-messaging-servicebus:7.17.1'
implementation 'com.azure:azure-identity:1.13.0'
implementation 'com.azure:azure-messaging-servicebus:7.17.2'
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.111.Final')
implementation platform('io.netty:netty-bom:4.1.112.Final')

testImplementation 'org.mockito:mockito-junit-jupiter:5.12.0'
}
Expand Down
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.14.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.15.0'

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

Expand Down
12 changes: 6 additions & 6 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ 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.14.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.15.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
implementation platform('com.fasterxml.jackson:jackson-bom:2.17.1')
implementation platform('com.fasterxml.jackson:jackson-bom:2.17.2')
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,17 +18,17 @@ dependencies {
implementation group: 'org.openapitools', name: 'jackson-databind-nullable', version: '0.2.6'

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

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

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

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

// File handling during testing
Expand Down