22bbbeb1ec
Trigger manifest generation from jar task during jps import
22 lines
346 B
Kotlin
22 lines
346 B
Kotlin
|
|
description = "Kotlin Runner"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(kotlinStdlib())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar {
|
|
manifest.attributes["Main-Class"] = "org.jetbrains.kotlin.runner.Main"
|
|
manifest.attributes["Class-Path"] = "kotlin-stdlib.jar"
|
|
}
|