From b46aa1f94637f973c0a0e4f825e88ae80556e75a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:43:58 +0000 Subject: [PATCH] Bump the gradle group in /codegen with 3 updates Bumps the gradle group in /codegen with 3 updates: [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) and [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit5). Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle ... Signed-off-by: dependabot[bot] --- codegen/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index e8c53cf35..2ca106afb 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -90,9 +90,9 @@ subprojects { // Apply junit 5 and hamcrest test dependencies to all java projects. dependencies { - testCompileOnly("org.junit.jupiter:junit-jupiter-api:5.11.3") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.3") - testCompileOnly("org.junit.jupiter:junit-jupiter-params:5.11.3") + testCompileOnly("org.junit.jupiter:junit-jupiter-api:5.11.4") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") + testCompileOnly("org.junit.jupiter:junit-jupiter-params:5.11.4") testCompileOnly("org.hamcrest:hamcrest:3.0") }