From b8d77f67ba90453c8147f88a040f66c1e58c3126 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 04:02:31 +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.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) and [com.auth0:java-jwt](https://github.com/auth0/java-jwt). Updates `org.junit:junit-bom` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.2...r6.0.3) Updates `org.junit.jupiter:junit-jupiter` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.2...r6.0.3) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.21.0 to 2.21.1 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.auth0:java-jwt` from 4.5.0 to 4.5.1 - [Release notes](https://github.com/auth0/java-jwt/releases) - [Changelog](https://github.com/auth0/java-jwt/blob/master/CHANGELOG.md) - [Commits](https://github.com/auth0/java-jwt/compare/4.5.0...4.5.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.21.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.auth0:java-jwt dependency-version: 4.5.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 eb6c21b2..45046037 100644 --- a/build.gradle +++ b/build.gradle @@ -52,8 +52,8 @@ dependencies { api 'com.squareup.okhttp3:okhttp:5.3.2' // JUnit 6 - testImplementation(platform('org.junit:junit-bom:6.0.2')) - testImplementation('org.junit.jupiter:junit-jupiter:6.0.2') + testImplementation(platform('org.junit:junit-bom:6.0.3')) + testImplementation('org.junit.jupiter:junit-jupiter:6.0.3') // Test libs testImplementation 'org.mockito:mockito-core:4.11.0' @@ -62,9 +62,9 @@ dependencies { testImplementation 'com.squareup.okhttp3:okhttp:5.3.2' testImplementation 'com.squareup.okhttp3:mockwebserver:5.3.2' - testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.0' + testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.1' - compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.0' + compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.1' // Lombok compileOnly 'org.projectlombok:lombok:1.18.42' @@ -73,7 +73,7 @@ dependencies { testAnnotationProcessor 'org.projectlombok:lombok:1.18.42' // JWT - implementation 'com.auth0:java-jwt:4.5.0' + implementation 'com.auth0:java-jwt:4.5.1' } tasks.register('buildJar', Jar) {