f7a9065b75
#KTI-82
27 lines
434 B
Kotlin
27 lines
434 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:cli"))
|
|
|
|
compileOnly(intellijCore())
|
|
|
|
testApi(projectTests(":compiler:tests-common"))
|
|
testApi(projectTests(":compiler"))
|
|
testApi(commonDependency("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
dependsOn(":dist")
|
|
}
|