mirror of
https://github.com/apple/pkl.git
synced 2026-04-10 02:43:42 +02:00
17 lines
307 B
Kotlin
17 lines
307 B
Kotlin
plugins {
|
|
pklAllProjects
|
|
pklKotlinLibrary
|
|
pklPublishLibrary
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
named<MavenPublication>("library") {
|
|
pom {
|
|
url.set("https://github.com/apple/pkl/tree/main/pkl-commons")
|
|
description.set("Internal utilities. NOT A PUBLIC API.")
|
|
}
|
|
}
|
|
}
|
|
}
|