Files
kotlin-fork/compiler/test-infrastructure/build.gradle.kts
T
Dmitriy Novozhilov dd402b16d9 [TEST] Add core of new tests infrastructure
It contains different abstractions which represents parts of compiler
  pipeline and artifacts produced by them, service structure, handlers
  for analysis of artifacts
2020-12-16 19:52:23 +03:00

28 lines
640 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testApi(project(":compiler:fir:entrypoint"))
testApi(project(":compiler:cli"))
testApi(intellijCoreDep()) { includeJars("intellij-core") }
testCompileOnly(project(":kotlin-reflect-api"))
testRuntimeOnly(project(":kotlin-reflect"))
testRuntimeOnly(project(":core:descriptors.runtime"))
testImplementation(projectTests(":compiler:test-infrastructure-utils"))
testRuntimeOnly(intellijDep()) {
includeJars("jna", rootProject = rootProject)
}
}
sourceSets {
"main" { none() }
"test" { projectDefault() }
}
testsJar()