mirror of
https://github.com/apple/pkl.git
synced 2026-04-20 23:41:27 +02:00
Initial commit
This commit is contained in:
28
pkl-commons-cli/pkl-commons-cli.gradle.kts
Normal file
28
pkl-commons-cli/pkl-commons-cli.gradle.kts
Normal file
@@ -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.")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user