Files
pkl/pkl-commons-cli/pkl-commons-cli.gradle.kts
Peter Niederwieser ecad035dca Initial commit
2024-02-01 14:00:22 -08:00

29 lines
690 B
Kotlin

plugins {
pklAllProjects
pklKotlinLibrary
pklPublishLibrary
}
dependencies {
api(project(":pkl-core"))
api(libs.clikt) {
// force clikt to use our version of the kotlin stdlib
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk8")
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-common")
}
implementation(project(":pkl-commons"))
testImplementation(project(":pkl-commons-test"))
}
publishing {
publications {
named<MavenPublication>("library") {
pom {
url.set("https://github.com/apple/pkl/tree/main/pkl-commons-cli")
description.set("Internal CLI utilities. NOT A PUBLIC API.")
}
}
}
}