f37e313705
* Introduce frontend api module & implement api for FIR * Implement some basic declaration highlighting for FIR
35 lines
768 B
Kotlin
35 lines
768 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:psi"))
|
|
compileOnly(project(":compiler:frontend"))
|
|
compileOnly(project(":core:type-system"))
|
|
compileOnly(project(":idea:idea-frontend-independent"))
|
|
compileOnly(project(":compiler:psi"))
|
|
compileOnly(intellijCoreDep())
|
|
compileOnly(intellijDep())
|
|
|
|
Platform[191].orLower {
|
|
compileOnly(intellijDep()) { includeJars("java-api", "java-impl") }
|
|
}
|
|
|
|
Platform[192].orHigher {
|
|
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar()
|
|
|
|
projectTest {
|
|
dependsOn(":dist")
|
|
workingDir = rootDir
|
|
}
|