From e14439e506cea73fa11c9186f61ee6b021ecb2f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:42:42 +0000 Subject: [PATCH] Bump the gradle-dependencies group with 4 updates Bumps the gradle-dependencies group with 4 updates: [org.json:json](https://github.com/douglascrockford/JSON-java), [org.junit:junit-bom](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) and [org.mockito:mockito-core](https://github.com/mockito/mockito). Updates `org.json:json` from 20250107 to 20250517 - [Release notes](https://github.com/douglascrockford/JSON-java/releases) - [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md) - [Commits](https://github.com/douglascrockford/JSON-java/commits) Updates `org.junit:junit-bom` from 5.11.4 to 5.13.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.4...r5.13.0) Updates `org.junit.jupiter:junit-jupiter` from 5.11.4 to 5.13.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.4...r5.13.0) Updates `org.mockito:mockito-core` from 4.9.0 to 4.11.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.9.0...v4.11.0) --- updated-dependencies: - dependency-name: org.json:json dependency-version: '20250517' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle-dependencies - dependency-name: org.junit:junit-bom dependency-version: 5.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter dependency-version: 5.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.mockito:mockito-core dependency-version: 4.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 804189d9..f804f3bb 100644 --- a/build.gradle +++ b/build.gradle @@ -51,15 +51,15 @@ configurations { dependencies { // This dependency is used internally, and not exposed to consumers on their own compile classpath. implementation 'com.google.code.gson:gson:2.13.1' - implementation 'org.json:json:20250107' + implementation 'org.json:json:20250517' // https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 api 'com.squareup.okhttp3:okhttp:4.12.0' // Use JUnit test framework - testImplementation(platform('org.junit:junit-bom:5.11.4')) - testImplementation('org.junit.jupiter:junit-jupiter:5.11.4') + testImplementation(platform('org.junit:junit-bom:5.13.0')) + testImplementation('org.junit.jupiter:junit-jupiter:5.13.0') // https://mvnrepository.com/artifact/org.mockito/mockito-core - testImplementation 'org.mockito:mockito-core:4.9.0' + 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.okhttp3:okhttp:4.12.0'