Files
kotlin-fork/ant/build.gradle.kts
T
Vyacheslav Gerasimov 22bbbeb1ec Build: Fix manifest for kotlin-compiler in jps build
Trigger manifest generation from jar task during jps import
2019-06-27 17:56:51 +03:00

22 lines
369 B
Kotlin

description = "Kotlin Ant Tools"
plugins {
kotlin("jvm")
}
dependencies {
compile(commonDep("org.apache.ant", "ant"))
compile(project(":kotlin-preloader"))
compile(kotlinStdlib())
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
runtimeJar {
manifest.attributes["Class-Path"] = "$compilerManifestClassPath kotlin-preloader.jar"
}