Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-coroutine/build.gradle.kts
T

23 lines
451 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":idea:jvm-debugger:jvm-debugger-core"))
compileOnly(toolsJarApi())
compileOnly(intellijDep())
Platform[192].orHigher {
compileOnly(intellijPluginDep("java"))
}
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}