blob: d9e8dd750916655ea65e112655b85bbb58f79e77 (
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("org.jetbrains.conventions.kotlin-jvm")
}
dependencies {
compileOnly(projects.core)
compileOnly(projects.subprojects.analysisKotlinApi)
api(libs.kotlin.compiler)
implementation(projects.subprojects.analysisMarkdownJb)
implementation(projects.subprojects.analysisJavaPsi)
testImplementation(kotlin("test"))
testImplementation(projects.core.contentMatcherTestUtils)
testImplementation(projects.core.testApi)
// TODO [beresnev] get rid of it
compileOnly(libs.kotlinx.coroutines.core)
}
|