blob: de9db4222bedca1749ae4c751e56049e538e0f83 [file] [log] [blame]
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"
}