34 lines
930 B
Kotlin
34 lines
930 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:psi"))
|
|
api(project(":core:deserialization.common"))
|
|
api(project(":core:deserialization.common.jvm"))
|
|
api(project(":core:deserialization"))
|
|
implementation(project(":analysis:decompiled:decompiler-to-stubs"))
|
|
implementation(project(":compiler:frontend.common.jvm"))
|
|
implementation(project(":core:compiler.common.jvm"))
|
|
|
|
api(intellijCore())
|
|
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
testImplementation(projectTests(":analysis:analysis-test-framework"))
|
|
testImplementation(libs.junit.jupiter.api)
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest(jUnitMode = JUnitMode.JUnit5) {
|
|
workingDir = rootDir
|
|
}
|
|
|
|
|
|
testsJar() |