blob: 9783a71c4306559b3a4ebb6e3c99585d95caa685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* 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)
implementation(projects.subprojects.analysisKotlinDescriptors.compiler)
// TODO [beresnev] get rid of it
compileOnly(libs.kotlinx.coroutines.core)
}
|