Files
kotlin-fork/compiler/fir/tree/tree-generator/build.gradle.kts
T
Alexander.Likhachev 60080e8bb8 [Build] Remove redundant trove4j compileOnly dependencies
^KTI-1135 In Progress
2024-01-10 11:29:25 +00:00

33 lines
727 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(":generators:tree-generator-common"))
implementation(project(":core:compiler.common"))
implementation(project(":compiler:frontend.common"))
implementation(project(":compiler:fir:cones"))
compileOnly(intellijCore())
runtimeOnly(commonDependency("org.jetbrains.intellij.deps:jdom"))
}
application {
mainClass.set("org.jetbrains.kotlin.fir.tree.generator.MainKt")
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}