22 lines
364 B
Kotlin
22 lines
364 B
Kotlin
|
|
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"
|
|
}
|