[Build] Fix the typo junit jupyter -> jupiter

This commit is contained in:
Alexander.Likhachev
2023-09-06 15:48:28 +02:00
committed by Space Team
parent a6f3dbb5f4
commit 6eaccc997f
47 changed files with 96 additions and 96 deletions
@@ -26,8 +26,8 @@ dependencies {
testImplementation(projectTests(":analysis:decompiled:native"))
testImplementation(intellijCore())
testApi(platform(libs.junit.bom))
testImplementation(libs.junit.jupyter.api)
testRuntimeOnly(libs.junit.jupyter.engine)
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
}
val generateFrontendApiTests by generator("org.jetbrains.kotlin.generators.tests.analysis.api.GenerateAnalysisApiTestsKt")
+2 -2
View File
@@ -80,8 +80,8 @@ dependencies {
testImplementation(project(":kotlin-gradle-compiler-types"))
testImplementation(project(":jps:jps-common"))
testApi(platform(libs.junit.bom))
testImplementation(libs.junit.jupyter.api)
testRuntimeOnly(libs.junit.jupyter.engine)
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
if (Ide.IJ()) {
testCompileOnly(jpsBuildTest())
+2 -2
View File
@@ -10,8 +10,8 @@ dependencies {
testApi(kotlinStdlib())
testImplementation(libs.junit4)
testApi(platform(libs.junit.bom))
testImplementation(libs.junit.jupyter.api)
testRuntimeOnly(libs.junit.jupyter.engine)
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
testApi(project(":generators"))
testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }