From 47a1d2aec6fd65eceb465a303f19ffc496fae8b5 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Wed, 19 Jan 2022 15:29:07 +0100 Subject: [PATCH] [Gradle] Fix wrong project path to :kotlin-test:kotlin-test-junit --- libraries/tools/kotlin-gradle-plugin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tools/kotlin-gradle-plugin/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin/build.gradle.kts index d1cf4675582..f72f5d20663 100644 --- a/libraries/tools/kotlin-gradle-plugin/build.gradle.kts +++ b/libraries/tools/kotlin-gradle-plugin/build.gradle.kts @@ -103,7 +103,7 @@ dependencies { testImplementation(projectTests(":kotlin-build-common")) testImplementation(project(":kotlin-android-extensions")) testImplementation(project(":kotlin-compiler-runner")) - testImplementation(project(":kotlin-test::kotlin-test-junit")) + testImplementation(project(":kotlin-test:kotlin-test-junit")) testImplementation(commonDependency("junit:junit")) testImplementation(project(":kotlin-gradle-statistics")) testCompileOnly(project(":kotlin-reflect-api"))