0d2032f3ef
Co-authored-by: Gleb Lukianets <gleb.lukianets@jetbrains.com>
25 lines
419 B
Kotlin
25 lines
419 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
application
|
|
}
|
|
|
|
val runtimeOnly by configurations
|
|
val compileOnly by configurations
|
|
runtimeOnly.extendsFrom(compileOnly)
|
|
|
|
dependencies {
|
|
implementation(project(":generators:tree-generator-common"))
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.jetbrains.kotlin.sir.tree.generator.MainKt")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" {}
|
|
}
|