From 384d8cdf7f4016cc3b4af61078f79ba03e424f57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 11:14:16 +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.2 to 5.11.3 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.2...r5.11.3) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.2 to 5.11.3 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.2...r5.11.3) Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.2 to 5.11.3 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.2...r5.11.3) --- 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 4d5fe890f..2362de6e4 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.2") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") - testCompileOnly("org.junit.jupiter:junit-jupiter-params:5.11.2") + 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.hamcrest:hamcrest:3.0") }