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