[Build] Fix the typo junit jupyter -> jupiter
This commit is contained in:
committed by
Space Team
parent
a6f3dbb5f4
commit
6eaccc997f
@@ -11,8 +11,8 @@ configureKotlinCompileTasksGradleCompatibility()
|
||||
dependencies {
|
||||
compileOnly(kotlinStdlib())
|
||||
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)
|
||||
testImplementation(kotlinStdlib())
|
||||
}
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@ dependencies {
|
||||
testApi(project(":compiler:frontend"))
|
||||
|
||||
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)
|
||||
|
||||
testRuntimeOnly(project(":core:descriptors.runtime"))
|
||||
testRuntimeOnly(project(":compiler:fir:fir2ir:jvm-backend"))
|
||||
|
||||
@@ -30,8 +30,8 @@ dependencies {
|
||||
testApi(projectTests(":compiler:fir:analysis-tests"))
|
||||
|
||||
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)
|
||||
|
||||
testRuntimeOnly(project(":core:deserialization"))
|
||||
testRuntimeOnly(project(":core:descriptors.runtime"))
|
||||
|
||||
@@ -19,8 +19,8 @@ dependencies {
|
||||
testImplementation(projectTests(":generators:test-generator"))
|
||||
|
||||
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(libs.junit.platform.launcher)
|
||||
testApi(projectTests(":compiler:test-infrastructure"))
|
||||
testApi(projectTests(":compiler:test-infrastructure-utils"))
|
||||
|
||||
@@ -82,8 +82,8 @@ dependencies {
|
||||
testImplementation(commonDependency("org.jetbrains.intellij.deps:jdom"))
|
||||
|
||||
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)
|
||||
}
|
||||
|
||||
optInToExperimentalCompilerApi()
|
||||
|
||||
@@ -11,8 +11,8 @@ dependencies {
|
||||
testApi(projectTests(":compiler:tests-common-new"))
|
||||
|
||||
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)
|
||||
testImplementation(libs.junit.platform.runner)
|
||||
testImplementation(libs.junit.platform.suite.api)
|
||||
runtimeOnly(libs.junit.vintage.engine)
|
||||
|
||||
@@ -7,8 +7,8 @@ dependencies {
|
||||
testImplementation(kotlinStdlib())
|
||||
|
||||
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)
|
||||
testImplementation(projectTests(":compiler:tests-common"))
|
||||
testImplementation(projectTests(":compiler:test-infrastructure"))
|
||||
testImplementation(projectTests(":compiler:tests-common-new"))
|
||||
|
||||
@@ -17,9 +17,9 @@ dependencies {
|
||||
testRuntimeOnly(project(":core:descriptors.runtime"))
|
||||
|
||||
testApi(platform(libs.junit.bom))
|
||||
testImplementation(libs.junit.jupyter.api)
|
||||
testRuntimeOnly(libs.junit.jupyter.engine)
|
||||
testImplementation(libs.junit.jupyter.params)
|
||||
testImplementation(libs.junit.jupiter.api)
|
||||
testRuntimeOnly(libs.junit.jupiter.engine)
|
||||
testImplementation(libs.junit.jupiter.params)
|
||||
runtimeOnly(libs.junit.vintage.engine)
|
||||
testImplementation(libs.junit4)
|
||||
}
|
||||
|
||||
@@ -10,9 +10,9 @@ dependencies {
|
||||
implementation(project(":compiler:ir.serialization.common"))
|
||||
compileOnly(commonDependency("org.jetbrains.intellij.deps.fastutil:intellij-deps-fastutil"))
|
||||
testApi(platform(libs.junit.bom))
|
||||
testImplementation(libs.junit.jupyter.api)
|
||||
testRuntimeOnly(libs.junit.jupyter.engine)
|
||||
testImplementation(libs.junit.jupyter.params)
|
||||
testImplementation(libs.junit.jupiter.api)
|
||||
testRuntimeOnly(libs.junit.jupiter.engine)
|
||||
testImplementation(libs.junit.jupiter.params)
|
||||
testImplementation(intellijCore())
|
||||
testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
|
||||
testImplementation(projectTests(":compiler:tests-common-new"))
|
||||
|
||||
@@ -12,8 +12,8 @@ dependencies {
|
||||
testImplementation(project(":compiler:visualizer:render-fir"))
|
||||
|
||||
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(projectTests(":compiler:tests-compiler-utils"))
|
||||
testApi(projectTests(":compiler:tests-common-new"))
|
||||
|
||||
Reference in New Issue
Block a user