Files
kotlin-fork/ant/build.gradle.kts
T
2017-09-19 21:37:18 +02:00

26 lines
531 B
Kotlin

description = "Kotlin Ant Tools"
apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(commonDep("org.apache.ant", "ant"))
compile(project(":kotlin-preloader"))
compile(project(":kotlin-stdlib"))
buildVersion()
}
sourceSets {
"main" { default() }
"test" { none() }
}
runtimeJar {
from("$projectDir/src") { include("**/*.xml") }
manifest.attributes.put("Class-Path", "kotlin-stdlib.jar kotlin-reflect.jar kotlin-script-runtime.jar kotlin-preloader.jar")
}
dist()