blob: 2ccb6b89c75caac390dbf7e9d02e1772d2ee301d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import org.jetbrains.registerDokkaArtifactPublication
dependencies {
implementation(project(":plugins:base"))
implementation(project(":plugins:jekyll"))
implementation(project(":plugins:all-modules-page"))
implementation(project(":plugins:templating"))
implementation(project(":plugins:gfm"))
implementation(project(":plugins:gfm:gfm-template-processing"))
val coroutines_version: String by project
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version")
}
registerDokkaArtifactPublication("dokkaJekyllTemplateProcessing") {
artifactId = "jekyll-template-processing-plugin"
}
|