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

[CORE-69]: Bump the minor-patch-dependencies group across 1 directory with 7 updates #524

Merged
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
5 changes: 3 additions & 2 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ repositories {
dependencies {
implementation 'com.diffplug.spotless:spotless-plugin-gradle:6.25.0'
implementation 'com.felipefzdz.gradle.shellcheck:shellcheck:1.4.6'
implementation 'com.google.cloud.tools.jib:com.google.cloud.tools.jib.gradle.plugin:3.4.3'
implementation 'com.google.cloud.tools.jib:com.google.cloud.tools.jib.gradle.plugin:3.4.4'
implementation 'com.srcclr.gradle:com.srcclr.gradle.gradle.plugin:3.1.12'
implementation 'de.undercouch.download:de.undercouch.download.gradle.plugin:5.6.0'
implementation 'io.spring.dependency-management:io.spring.dependency-management.gradle.plugin:1.1.6'
implementation 'org.hidetake.swagger.generator:org.hidetake.swagger.generator.gradle.plugin:2.19.2'
implementation 'org.sonarqube:org.sonarqube.gradle.plugin:4.4.1.3373'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:3.3.5'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:3.4.0'
implementation 'com.fasterxml.jackson.core:jackson-core:2.18.2'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
implementation group: 'io.projectreactor.netty', name: 'reactor-netty-core', version: '1.2.0'
implementation group: 'io.projectreactor', name: 'reactor-core', version: '3.7.0'

implementation group: 'com.azure.resourcemanager', name: 'azure-resourcemanager', version: '2.44.0'
implementation group: 'com.azure.resourcemanager', name: 'azure-resourcemanager', version: '2.45.0'
implementation group: 'com.azure.resourcemanager', name: 'azure-resourcemanager-relay', version: '1.0.0-beta.2'
implementation group: 'com.azure.resourcemanager', name: 'azure-resourcemanager-batch', version: '1.0.0'
implementation group: 'com.azure.resourcemanager', name: 'azure-resourcemanager-postgresqlflexibleserver', version: '1.0.0'
Expand Down
10 changes: 5 additions & 5 deletions service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'com.google.cloud.tools.jib'
id 'com.srcclr.gradle'
id 'com.gorylenko.gradle-git-properties' version '2.4.2'
id "au.com.dius.pact" version "4.6.15"
id "au.com.dius.pact" version "4.6.16"
}

project.ext {
Expand All @@ -19,7 +19,7 @@ apply(from: "$includeDir/testing.gradle")
dependencies {
implementation project(':library')

implementation 'io.sentry:sentry:7.17.0'
implementation 'io.sentry:sentry:7.18.1'

implementation group: "org.springframework.boot", name: "spring-boot-starter-web"
implementation group: "org.springframework.boot", name: "spring-boot-starter-validation"
Expand All @@ -30,9 +30,9 @@ dependencies {

testImplementation 'org.springframework.boot:spring-boot-starter-test'

testImplementation 'au.com.dius.pact.consumer:junit5:4.6.15'
testImplementation("au.com.dius.pact.provider:junit5:4.6.15")
testImplementation("au.com.dius.pact.provider:junit5spring:4.6.15")
testImplementation 'au.com.dius.pact.consumer:junit5:4.6.16'
testImplementation("au.com.dius.pact.provider:junit5:4.6.16")
testImplementation("au.com.dius.pact.provider:junit5spring:4.6.16")
}

test {
Expand Down
Loading