70ed76e0bd
Review: https://jetbrains.team/p/kt/reviews/6753 This commit doesn't fix any issue except for "cleanup". If you find a mistake in this commit feel free to revert part of it/the whole commit I checked every module where I drop ':dist' dependency. Tests still pass in those modules
32 lines
755 B
Kotlin
32 lines
755 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:util.runtime"))
|
|
api(commonDependency("javax.inject"))
|
|
compileOnly(kotlinStdlib())
|
|
compileOnly(intellijCore())
|
|
testApi(kotlinStdlib())
|
|
testCompileOnly("org.jetbrains:annotations:13.0")
|
|
testApi(project(":kotlin-test:kotlin-test-jvm"))
|
|
testApi(project(":kotlin-test:kotlin-test-junit"))
|
|
testApi(commonDependency("junit:junit"))
|
|
testCompileOnly(intellijCore())
|
|
|
|
testRuntimeOnly(intellijCore())
|
|
testRuntimeOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|
|
|
|
projectTest(parallel = true) {
|
|
workingDir = rootDir
|
|
}
|