Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-coroutine/build.gradle.kts
T
2020-04-21 09:48:12 +02:00

24 lines
518 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
implementation(project(":idea:jvm-debugger:jvm-debugger-core"))
implementation("org.apache.maven:maven-artifact:3.6.3")
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() }
}