From c63ea36637ce956029fb15b1482c0683ecb8a587 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 30 Aug 2023 15:58:46 +0200 Subject: Migrate to JUnit 5 and unify used test API (#3138) --- plugins/gfm/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugins/gfm/build.gradle.kts') diff --git a/plugins/gfm/build.gradle.kts b/plugins/gfm/build.gradle.kts index b7e6fc18..c238965a 100644 --- a/plugins/gfm/build.gradle.kts +++ b/plugins/gfm/build.gradle.kts @@ -18,11 +18,10 @@ dependencies { } } + testImplementation(kotlin("test")) testImplementation(projects.plugins.base) testImplementation(projects.plugins.base.baseTestUtils) testImplementation(projects.core.testApi) - testImplementation(platform(libs.junit.bom)) - testImplementation(libs.junit.jupiter) } registerDokkaArtifactPublication("gfmPlugin") { -- cgit