blob: 38032cfb62bf623acf70cc1f491cd078c53b4dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
import dokkabuild.overridePublicationArtifactId
plugins {
id("dokkabuild.kotlin-jvm")
id("dokkabuild.publish-jvm")
}
overridePublicationArtifactId("jekyll-template-processing-plugin")
dependencies {
compileOnly(projects.dokkaSubprojects.dokkaCore)
implementation(projects.dokkaSubprojects.pluginBase)
implementation(projects.dokkaSubprojects.pluginJekyll)
implementation(projects.dokkaSubprojects.pluginAllModulesPage)
implementation(projects.dokkaSubprojects.pluginTemplating)
implementation(projects.dokkaSubprojects.pluginGfm)
implementation(projects.dokkaSubprojects.pluginGfmTemplateProcessing)
implementation(kotlin("reflect"))
implementation(libs.kotlinx.coroutines.core)
testImplementation(kotlin("test"))
testImplementation(projects.dokkaSubprojects.coreTestApi)
}
|