From e0c4fc7139dd730fc6136d303e11b6f623e77202 Mon Sep 17 00:00:00 2001 From: Marco Geweke Date: Wed, 24 Jul 2024 09:52:19 +0200 Subject: [PATCH] Use new hamcrest dependency --- cli/build.gradle | 3 +-- core/build.gradle | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/cli/build.gradle b/cli/build.gradle index 2f5e4e46..4ecd4ab9 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -13,8 +13,7 @@ dependencies { annotationProcessor 'info.picocli:picocli-codegen:4.7.6' compileOnly "org.graalvm.nativeimage:svm:${graalvmVersion}" - testImplementation "org.hamcrest:hamcrest-core:2.2" - testImplementation "org.hamcrest:hamcrest-library:2.2" + testImplementation "org.hamcrest:hamcrest:2.2" testImplementation "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}" testCompileOnly 'junit:junit:4.13.2' testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junitJupiterVersion}" diff --git a/core/build.gradle b/core/build.gradle index 979be94d..cbc36cc8 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -40,8 +40,7 @@ dependencies { testImplementation "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}" testCompileOnly 'junit:junit:4.13.2' testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junitJupiterVersion}" - testImplementation "org.hamcrest:hamcrest-core:2.2" - testImplementation "org.hamcrest:hamcrest-library:2.2" + testImplementation "org.hamcrest:hamcrest:2.2" testImplementation "org.mockito:mockito-core:5.12.0" testImplementation("com.github.stefanbirkner:system-rules:1.19.0") { exclude group: 'junit', module: 'junit-dep'