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/jekyll/jekyll-template-processing/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugins/jekyll/jekyll-template-processing/build.gradle.kts') diff --git a/plugins/jekyll/jekyll-template-processing/build.gradle.kts b/plugins/jekyll/jekyll-template-processing/build.gradle.kts index d18b203e..1d993cdb 100644 --- a/plugins/jekyll/jekyll-template-processing/build.gradle.kts +++ b/plugins/jekyll/jekyll-template-processing/build.gradle.kts @@ -18,9 +18,8 @@ dependencies { implementation(kotlin("reflect")) implementation(libs.kotlinx.coroutines.core) + testImplementation(kotlin("test")) testImplementation(projects.core.testApi) - testImplementation(platform(libs.junit.bom)) - testImplementation(libs.junit.jupiter) } registerDokkaArtifactPublication("dokkaJekyllTemplateProcessing") { -- cgit