Files
openide/platform/jewel/markdown/core/build.gradle.kts
Sebastiano Poggi d4607e9ee9 Sort out markdown setup (hopefully for real)
Restore some lost run configs and cleanup readme, too.

GitOrigin-RevId: 6c334dfcbcfa7bc3833b0024772a7be3d6d51495
2024-02-15 11:58:26 +01:00

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}"
}