From 6ba3879bea0ed26ca0ab1ff9c27216a8b373eb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B0=D1=81=D1=8F=20=D0=9F=D0=B0=D0=BD=D0=BA=D0=BE?= =?UTF-8?q?=D0=B2?= Date: Thu, 30 Nov 2023 09:44:46 +0300 Subject: [PATCH] fix: missed junit dependency --- exposed-java-time/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exposed-java-time/build.gradle.kts b/exposed-java-time/build.gradle.kts index 52ef4e9bad..947a96c9ca 100644 --- a/exposed-java-time/build.gradle.kts +++ b/exposed-java-time/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { testImplementation(project(":exposed-dao")) testImplementation(project(":exposed-tests")) testImplementation(project(":exposed-json")) - testImplementation("junit", "junit", "4.12") + testImplementation(libs.junit) testImplementation(kotlin("test-junit")) }