Initial commit

This commit is contained in:
Peter Niederwieser
2024-02-01 14:00:22 -08:00
committed by Dan Chao
commit ecad035dca
2972 changed files with 211653 additions and 0 deletions
@@ -0,0 +1,28 @@
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.")
}
}
}
}