ab146bd6d4
for migration to Gradle 7+ #KTI-559
27 lines
490 B
Kotlin
27 lines
490 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:cli"))
|
|
|
|
compileOnly(intellijCoreDep()) { includeJars("intellij-core", rootProject = rootProject) }
|
|
|
|
testApi(projectTests(":compiler:tests-common"))
|
|
testApi(projectTests(":compiler"))
|
|
testApi(commonDep("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
dependsOn(":dist")
|
|
}
|