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
806 B
Kotlin
32 lines
806 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:psi"))
|
|
api(project(":core:deserialization.common"))
|
|
api(project(":core:deserialization.common.jvm"))
|
|
api(project(":core:deserialization"))
|
|
implementation(project(":analysis:decompiled:decompiler-to-stubs"))
|
|
implementation(project(":compiler:frontend.common.jvm"))
|
|
implementation(project(":core:compiler.common.jvm"))
|
|
|
|
api(intellijCore())
|
|
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
testImplementation(projectTests(":analysis:analysis-test-framework"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
}
|
|
|
|
|
|
testsJar() |