mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
Restore some lost run configs and cleanup readme, too. GitOrigin-RevId: 6c334dfcbcfa7bc3833b0024772a7be3d6d51495
24 lines
553 B
Kotlin
24 lines
553 B
Kotlin
plugins {
|
|
jewel
|
|
`jewel-publish`
|
|
`jewel-check-public-api`
|
|
alias(libs.plugins.composeDesktop)
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(projects.ui)
|
|
api(libs.commonmark.core)
|
|
|
|
testImplementation(compose.desktop.uiTestJUnit4)
|
|
testImplementation(projects.ui)
|
|
}
|
|
|
|
publicApiValidation {
|
|
// We don't foresee changes to the data models for now
|
|
excludedClassRegexes = setOf("org.jetbrains.jewel.markdown.MarkdownBlock.*")
|
|
}
|
|
|
|
publishing.publications.named<MavenPublication>("main") {
|
|
artifactId = "jewel-markdown-${project.name}"
|
|
}
|