coroutine debugger logic moved to jvm-debugger-coroutine module

This commit is contained in:
Vladimir Ilmov
2020-01-08 11:53:50 +01:00
committed by Vladimir Ilmov
parent b1b0817336
commit e570450c59
37 changed files with 129 additions and 107 deletions
@@ -0,0 +1,22 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":idea:jvm-debugger:jvm-debugger-core"))
compileOnly(intellijDep())
Platform[192].orHigher {
compileOnly(intellijPluginDep("java"))
}
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}