From ef9267bff57db26433688c4adccf088e607f413b Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 21 Oct 2019 11:05:43 -0400 Subject: [PATCH] Add `junit-vintage-engine` for JUnit 4 tests --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index dc346c6..32091bd 100644 --- a/build.gradle +++ b/build.gradle @@ -125,6 +125,9 @@ dependencies { testRuntime "org.apache.logging.log4j:log4j-jcl:$log4jVersion" testRuntime 'org.junit.jupiter:junit-jupiter-engine' testRuntime 'org.junit.platform:junit-platform-launcher' + + // To support JUnit 4 tests + testRuntime 'org.junit.vintage:junit-vintage-engine' } eclipse.project.natures += 'org.springframework.ide.eclipse.core.springnature'