Files
kotlin-fork/compiler/frontend.common/build.gradle.kts
T

18 lines
312 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":compiler:psi"))
compile(project(":compiler:container"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "annotations") }
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}