blob: 77b2f0c0e2684a8496463da8b672bfb1f733951b (
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
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
plugins {
id("dokkabuild.kotlin-jvm")
}
dependencies {
compileOnly(projects.dokkaSubprojects.dokkaCore)
compileOnly(projects.dokkaSubprojects.analysisKotlinApi)
api(libs.kotlin.compiler)
implementation(projects.dokkaSubprojects.analysisMarkdownJb)
implementation(projects.dokkaSubprojects.analysisJavaPsi)
testImplementation(kotlin("test"))
testImplementation(projects.dokkaSubprojects.coreContentMatcherTestUtils)
testImplementation(projects.dokkaSubprojects.coreTestApi)
// TODO [beresnev] get rid of it
compileOnly(libs.kotlinx.coroutines.core)
}
|