2a4f3f41aa
Review: https://jetbrains.team/p/kt/reviews/6753 Meaningful semantic change was splitted into 5 commits to simplify the change review. Sinle commit would be too big. Why replace source to binary: to get rid of kotlin-reflect in Kotlin plugin artifact KTIJ-22276 Note: Kotlin Maven artifacts (./gradlew publish) changed their dependency on kotlin-reflect
46 lines
1.1 KiB
Kotlin
46 lines
1.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
kotlin {
|
|
explicitApiWarning()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlinxCollectionsImmutable())
|
|
compileOnly(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
|
|
|
|
compileOnly(project(":compiler:psi"))
|
|
compileOnly(project(":compiler:frontend"))
|
|
compileOnly(project(":core:compiler.common"))
|
|
compileOnly(project(":core:compiler.common.jvm"))
|
|
implementation(project(":analysis:analysis-internal-utils"))
|
|
implementation(project(":analysis:analysis-api-providers"))
|
|
implementation(project(":analysis:kt-references"))
|
|
api(project(":analysis:project-structure"))
|
|
|
|
api(intellijCore())
|
|
api(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
api(commonDependency("com.google.guava:guava"))
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions.freeCompilerArgs += "-Xcontext-receivers"
|
|
}
|
|
|
|
testsJar()
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
}
|