Files
kotlin-fork/compiler/test-infrastructure/build.gradle.kts
T
Roman Golyshev d4cffb8a5a [213] Switch to 213 platform
KTI-1114
2023-04-21 13:19:04 +00:00

26 lines
518 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testApi(project(":compiler:fir:entrypoint"))
testApi(project(":compiler:cli"))
testApi(intellijCore())
testRuntimeOnly(project(":core:descriptors.runtime"))
testImplementation(projectTests(":compiler:test-infrastructure-utils"))
testRuntimeOnly(commonDependency("org.jetbrains.intellij.deps.jna:jna"))
}
optInToExperimentalCompilerApi()
sourceSets {
"main" { none() }
"test" { projectDefault() }
}
testsJar()