Files
kotlin-fork/ant/build.gradle.kts
T
Vyacheslav Gerasimov ab146bd6d4 Build: Fix deprecated Gradle configurations usages
for migration to Gradle 7+ #KTI-559
2021-09-26 18:28:44 +03:00

22 lines
357 B
Kotlin

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"
}