From 8d2b2f5098f42e6f889afce24cdb849e6e5023cd Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Fri, 18 Oct 2019 12:18:20 +0200 Subject: [PATCH] Fix Junit excludes --- build.gradle.kts | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b07b151..134857b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,7 +29,7 @@ dependencies { runtimeOnly("org.springframework.boot:spring-boot-devtools") kapt("org.springframework.boot:spring-boot-configuration-processor") testImplementation("org.springframework.boot:spring-boot-starter-test") { - exclude(module = "junit") + exclude(group = "org.junit.vintage", module = "junit-vintage-engine") exclude(module = "mockito-core") } testImplementation("org.junit.jupiter:junit-jupiter-api") diff --git a/pom.xml b/pom.xml index 78b1210..337dab5 100644 --- a/pom.xml +++ b/pom.xml @@ -69,8 +69,8 @@ test - junit - junit + org.junit.vintage + junit-vintage-engine org.mockito