Files
kotlin-fork/compiler/cli/cli-runner/build.gradle.kts
T
2017-09-19 23:58:30 +02:00

24 lines
368 B
Kotlin

description = "Kotlin Runner"
apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(projectDist(":kotlin-stdlib"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
runtimeJar {
manifest.attributes.put("Main-Class", "org.jetbrains.kotlin.runner.Main")
manifest.attributes.put("Class-Path", "kotlin-runtime.jar")
}
dist()