blob: 5cbce00df86442917e4ec8cac5b1c7f338325553 [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":core:util.runtime"))
api(commonDependency("javax.inject"))
compileOnly(kotlinStdlib())
compileOnly(intellijCore())
testApi(kotlinStdlib())
testCompileOnly("org.jetbrains:annotations:13.0")
testApi(kotlinTest("junit"))
testCompileOnly(libs.junit4)
testCompileOnly(intellijCore())
testImplementation("org.junit.jupiter:junit-jupiter:${libs.versions.junit5.get()}")
testRuntimeOnly(libs.junit.vintage.engine)
testRuntimeOnly(libs.junit.platform.launcher)
testRuntimeOnly(intellijCore())
testRuntimeOnly(libs.intellij.fastutil)
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
testsJar {}
projectTest(parallel = true) {
workingDir = rootDir
useJUnitPlatform()
}