From 6e28c89ec4119afc2f31aceaa8159ad9516aea39 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:44:49 +0000 Subject: [PATCH] Update junit to v5.11.1 --- build.gradle.kts | 4 ++-- sadu-testing/build.gradle.kts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index aa93bc2a..10696832 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -122,8 +122,8 @@ allprojects { dependencies { - testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.11.0") - testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.11.0") + testImplementation("org.junit.jupiter", "junit-jupiter-api", "5.11.1") + testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", "5.11.1") testImplementation("org.mockito", "mockito-core", "5.+") } diff --git a/sadu-testing/build.gradle.kts b/sadu-testing/build.gradle.kts index 133b6c53..40daed6d 100644 --- a/sadu-testing/build.gradle.kts +++ b/sadu-testing/build.gradle.kts @@ -2,10 +2,10 @@ description = "SADU module for checking validity of updater files" dependencies { - api(platform("org.junit:junit-bom:5.11.0")) + api(platform("org.junit:junit-bom:5.11.1")) api("org.junit.jupiter:junit-jupiter") api(project(":sadu-core")) - testImplementation(platform("org.junit:junit-bom:5.11.0")) + testImplementation(platform("org.junit:junit-bom:5.11.1")) testImplementation("org.junit.jupiter:junit-jupiter") testImplementation(project(":sadu-postgresql")) }