mirror of
https://github.com/apple/pkl.git
synced 2026-05-17 20:36:55 +02:00
c0a7080287
* Adjust gitattributes file (mark some files binary, mark bat files as using crlf endings) * Fix remaining line endings issues
20 lines
402 B
Kotlin
20 lines
402 B
Kotlin
plugins {
|
|
pklAllProjects
|
|
pklJavaLibrary
|
|
pklPublishLibrary
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
named<MavenPublication>("library") {
|
|
pom {
|
|
url.set("https://github.com/apple/pkl/tree/main/pkl-certs")
|
|
description.set("""
|
|
Pkl's built-in CA certificates.
|
|
Used by Pkl CLIs and optionally supported by pkl-core.")
|
|
""".trimIndent())
|
|
}
|
|
}
|
|
}
|
|
}
|