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