blob: 1b40027da228a14d688b31ce9a43fe899b2c4474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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(projects.core.contentMatcherTestUtils)
testImplementation(projects.core.testApi)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
// TODO [beresnev] get rid of it
compileOnly(libs.kotlinx.coroutines.core)
}
|