From dc6170922c5ac0009f77d23e88e197707300c76c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 08:24:57 +0000 Subject: [PATCH] Bump the gradle-dependencies group with 4 updates Bumps the gradle-dependencies group with 4 updates: [org.junit:junit-bom](https://github.com/junit-team/junit-framework), [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework), [com.squareup.okio:okio](https://github.com/square/okio) and [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson). Updates `org.junit:junit-bom` from 5.13.0 to 5.13.2 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.13.0...r5.13.2) Updates `org.junit.jupiter:junit-jupiter` from 5.13.0 to 5.13.2 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.13.0...r5.13.2) Updates `com.squareup.okio:okio` from 3.12.0 to 3.14.0 - [Release notes](https://github.com/square/okio/releases) - [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okio/compare/parent-3.12.0...parent-3.14.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.19.0 to 2.19.1 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 5.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter dependency-version: 5.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.squareup.okio:okio dependency-version: 3.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 4015aa0a..a52c778a 100644 --- a/build.gradle +++ b/build.gradle @@ -51,17 +51,17 @@ dependencies { api 'com.squareup.okhttp3:okhttp:4.12.0' // Use JUnit test framework - testImplementation(platform('org.junit:junit-bom:5.13.0')) - testImplementation('org.junit.jupiter:junit-jupiter:5.13.0') + testImplementation(platform('org.junit:junit-bom:5.13.2')) + testImplementation('org.junit.jupiter:junit-jupiter:5.13.2') // https://mvnrepository.com/artifact/org.mockito/mockito-core testImplementation 'org.mockito:mockito-core:4.11.0' testImplementation 'org.hamcrest:hamcrest:3.0' - testImplementation 'com.squareup.okio:okio:3.12.0' + testImplementation 'com.squareup.okio:okio:3.14.0' testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' - testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.19.0' + testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.19.1' // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind - compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.19.0' + compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.19.1' // Lombok compileOnly 'org.projectlombok:lombok:1.18.38'