Files
kotlin-fork/compiler/fir/tree/tree-generator/build.gradle.kts
T
2022-11-07 08:24:19 +00:00

33 lines
735 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
application
}
val runtimeOnly by configurations
val compileOnly by configurations
runtimeOnly.extendsFrom(compileOnly)
dependencies {
implementation(project(":generators"))
implementation(project(":core:compiler.common"))
implementation(project(":compiler:frontend.common"))
implementation(project(":compiler:fir:cones"))
compileOnly(intellijCore())
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
runtimeOnly(commonDependency("org.jetbrains.intellij.deps:jdom"))
}
application {
mainClass.set("org.jetbrains.kotlin.fir.tree.generator.MainKt")
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}