mirror of
https://github.com/apple/pkl.git
synced 2026-03-27 11:31:11 +01:00
55 lines
1.4 KiB
Kotlin
55 lines
1.4 KiB
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
pklAllProjects
|
|
pklKotlinLibrary
|
|
pklPublishLibrary
|
|
pklHtmlValidator
|
|
@Suppress("DSL_SCOPE_VIOLATION") // https://youtrack.jetbrains.com/issue/KTIJ-19369
|
|
alias(libs.plugins.kotlinxSerialization)
|
|
}
|
|
|
|
val graalVmBaseDir = buildInfo.graalVm.baseDir
|
|
|
|
dependencies {
|
|
implementation(project(":pkl-core"))
|
|
implementation(project(":pkl-commons-cli"))
|
|
implementation(project(":pkl-commons"))
|
|
implementation(libs.commonMark)
|
|
implementation(libs.commonMarkTables)
|
|
implementation(libs.kotlinxHtml)
|
|
implementation(libs.kotlinxSerializationJson) {
|
|
// use our own Kotlin version
|
|
// (exclude is supported both for Maven and Gradle metadata, whereas dependency constraints aren't)
|
|
exclude(group = "org.jetbrains.kotlin")
|
|
}
|
|
|
|
testImplementation(project(":pkl-commons-test"))
|
|
testImplementation(libs.jimfs)
|
|
|
|
// Graal.JS
|
|
testImplementation(libs.graalSdk)
|
|
testImplementation(libs.graalJs)
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
named<MavenPublication>("library") {
|
|
pom {
|
|
url.set("https://github.com/apple/pkl/tree/main/pkl-doc")
|
|
description.set("Documentation generator for Pkl modules.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest {
|
|
attributes += mapOf("Main-Class" to "org.pkl.doc.Main")
|
|
}
|
|
}
|
|
|
|
htmlValidator {
|
|
sources = files("src/test/files/DocGeneratorTest/output")
|
|
}
|