Files
kotlin-fork/compiler/ir/ir.tree/build.gradle.kts
T
2020-01-27 14:53:36 +01:00

16 lines
285 B
Kotlin

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