blob: a031684d4ab3487e54c408f0ffe436348ba460e4 (
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
30
31
32
|
/*
* 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("all-modules-page-plugin")
dependencies {
compileOnly(projects.dokkaSubprojects.dokkaCore)
compileOnly(projects.dokkaSubprojects.analysisKotlinApi)
implementation(projects.dokkaSubprojects.pluginBase)
implementation(projects.dokkaSubprojects.pluginTemplating)
implementation(projects.dokkaSubprojects.analysisMarkdownJb)
implementation(libs.kotlinx.html)
testImplementation(kotlin("test"))
testImplementation(projects.dokkaSubprojects.pluginBase)
testImplementation(projects.dokkaSubprojects.pluginBaseTestUtils)
testImplementation(projects.dokkaSubprojects.pluginGfm)
testImplementation(projects.dokkaSubprojects.pluginGfmTemplateProcessing)
testImplementation(projects.dokkaSubprojects.coreContentMatcherTestUtils)
testImplementation(projects.dokkaSubprojects.coreTestApi)
}
|