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

18 lines
298 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(project(":core:descriptors"))
compile(project(":core:descriptors.jvm"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}