blob: 8a7ef2ec294d4f5999698ed743f0c99112bcc0a9 [file] [log] [blame]
plugins {
kotlin("jvm")
id("jps-compatible")
id("test-inputs-check")
id("project-tests-convention")
}
dependencies {
api(project(":core:util.runtime"))
api(commonDependency("javax.inject"))
compileOnly(kotlinStdlib())
compileOnly(intellijCore())
testApi(kotlinStdlib())
testCompileOnly("org.jetbrains:annotations:13.0")
testApi(kotlinTest("junit5"))
testCompileOnly(intellijCore())
testImplementation("org.junit.jupiter:junit-jupiter:${libs.versions.junit5.get()}")
testRuntimeOnly(libs.junit.platform.launcher)
testRuntimeOnly(intellijCore())
testRuntimeOnly(libs.intellij.fastutil)
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
testsJar {}
projectTests {
testTask(jUnitMode = JUnitMode.JUnit5)
}